home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Information / THINK C Digest / 1996 / 96-01 next >
Text File  |  1996-06-24  |  97KB  |  1,916 lines

  1. Archive THINK-C/MESSAGES, file 96-01.
  2. Part 1/1, total size 95619 bytes:
  3.  
  4. ------------------------------ Cut here ------------------------------
  5. >From STURCLAR@acs.eku.edu Sun Jan  7 08:18:34 PST 1996
  6. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id IAA19873 for <think-c@rdatasys.com>; Sun, 7 Jan 1996 08:18:33 -0800 (PST)
  7. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id IAA09847 for <think-c@rdatasys.com>; Sun, 7 Jan 1996 08:18:31 -0800
  8. Received: from acs.eku.edu(157.89.8.64) by lionfish.rdatasys.com via smap (V1.3)
  9.         id sma009845; Sun Jan  7 08:18:05 1996
  10. Received: from ACS.EKU.EDU by ACS.EKU.EDU (PMDF V5.0-4 #11885)
  11.  id <01HZQ62W99V80002PS@ACS.EKU.EDU> for think-c@rdatasys.com; Sun,
  12.  07 Jan 1996 11:17:15 -0500 (EST)
  13. Date: Sun, 07 Jan 1996 11:17:15 -0500 (EST)
  14. From: BOBBY CLARK <STURCLAR@acs.eku.edu>
  15. Subject: help
  16. To: think-c@rdatasys.com
  17. Message-id: <01HZQ62W9BRA0002PS@ACS.EKU.EDU>
  18. X-VMS-To: IN%"think-c@rdatasys.com"
  19. MIME-version: 1.0
  20. Content-type: TEXT/PLAIN; CHARSET=US-ASCII
  21. Content-transfer-encoding: 7BIT
  22.  
  23. I am playing around with think c 7.0 for the first time.  I have an equation
  24. I need to put into a program.  I have been looking at the examples under the 
  25. reference program, but I am clueless.
  26. This is the equation:
  27.  
  28.         ln (y/f)^12
  29. x =  _____________
  30.         ln 2
  31.  
  32.  
  33.         ln b
  34. x=   _________
  35.         ln 2
  36.  
  37. b=(y/f)^12
  38.  
  39. Maybe the second one will help clarify the question . . . I asked some people
  40. that didn't understand the notation of the first.
  41.  
  42. Oh, f = 261.63
  43.  
  44.         ln (y/261.63)^12
  45. x =   ____________________
  46.              ln 2
  47.  
  48. y, will be coming from sound input, frequency.  I need to solve for x
  49. the big problem may be that this has to run in real time. . . as fast as
  50. possible.  
  51.  
  52. thanks for your help,
  53. sturclar@acs.eku.edu
  54.  
  55. >From EECS Thu Jan 11 00:47:34 PST 1996
  56. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id AAA16994 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 00:47:33 -0800 (PST)
  57. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id AAA07710 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 00:47:29 -0800
  58. Received: from dns1.eecs.wsu.edu(134.121.64.1) by lionfish.rdatasys.com via smap (V1.3)
  59.         id sma007708; Thu Jan 11 00:47:04 1996
  60. Received: from ren.eecs.wsu.edu by dns1.eecs.wsu.edu (8.7.1/8.940801)
  61.         id AAA01467; Thu, 11 Jan 1996 00:46:56 -0800 (PST)
  62. Received: by ren.eecs.wsu.edu (1.37.109.4) id AA26033; Thu, 11 Jan 96 00:46:55 -0800
  63. Date: Thu, 11 Jan 1996 00:41:54 -0700 (PDT)
  64. From: "Kevin Horne - EECS (CPTS355)" <khorne@eecs.wsu.edu>
  65. Subject: Re: help
  66. To: BOBBY CLARK <STURCLAR@acs.eku.edu>
  67. Cc: Multiple recipients of list <think-c@rdatasys.com>
  68. In-Reply-To: <01HZQ62W9BRA0002PS@ACS.EKU.EDU>
  69. Message-Id: <Pine.3.07.9601110051.A25978-a100000@ren.eecs.wsu.edu>
  70. Mime-Version: 1.0
  71. Content-Type: TEXT/PLAIN; charset=US-ASCII
  72.  
  73.  
  74.  
  75. On Sun, 7 Jan 1996, BOBBY CLARK wrote:
  76.  
  77. > I am playing around with think c 7.0 for the first time.  I have an equation
  78. > I need to put into a program.  I have been looking at the examples under the 
  79. > reference program, but I am clueless.
  80. > This is the equation:
  81. >       ln (y/261.63)^12
  82. > x =   ____________________
  83. >            ln 2
  84. > y, will be coming from sound input, frequency.  I need to solve for x
  85. > the big problem may be that this has to run in real time. . . as fast as
  86. > possible.  
  87.  
  88. The fastest way to solve this equation would be by doing a table lookup based on
  89. the precalculated values for x from each value of y, assuming the range of y
  90. allows this.  If y has a limited range but is a floating point number you could
  91. interpolate the x for the fractional portion of y to obtain more accurate results.
  92.  
  93.  
  94.  
  95. >From slb2@axe.humboldt.edu Thu Jan 11 11:07:23 PST 1996
  96. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id LAA19483 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 11:07:22 -0800 (PST)
  97. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id LAA28536 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 11:07:19 -0800
  98. Received: from axe.humboldt.edu(137.150.148.10) by lionfish.rdatasys.com via smap (V1.3)
  99.         id sma028489; Thu Jan 11 11:06:57 1996
  100. Received: from 137.150.148.20 (axe.humboldt.edu)
  101.  by axe.humboldt.edu (PMDF V5.0-5 #11939) id <0DL16F0NQ00LR9@axe.humboldt.edu>;
  102.  Thu, 11 Jan 1996 11:06 -0800 (PST)
  103. Date: Thu, 11 Jan 1996 11:06:27 +0000
  104. From: Summer <slb2@axe.humboldt.edu>
  105. Subject: RE: Bobby's equation
  106. To: Multiple recipients of list <think-c@rdatasys.com>
  107. Reply-to: slb2@axe.humboldt.edu
  108. Message-id: <30F4EF33.6357@axe.humboldt.edu>
  109. MIME-version: 1.0
  110. X-Mailer: Mozilla 2.0b5 (Macintosh; I; 68K)
  111. Content-type: text/plain; charset=us-ascii
  112. Content-transfer-encoding: 7bit
  113.  
  114. >       ln (y/261.63)^12
  115. > x =   ____________________
  116. >            ln 2
  117.  
  118.  
  119. /* define mathtype to whatever you need -- I prefer double */
  120. typedef double mathtype;
  121. const mathtype f = 261.63;
  122. const ln2 = log(2);
  123.  
  124. mathtype IPower( mathtype x , int power ) {
  125.         mathtype        y;
  126.         while ( !( power & 1 ) ) { x *= x; power >>= 1; }
  127.         y = x;
  128.         while ( --power > 0 ) { y *= x; }
  129.         return y;
  130. }
  131.  
  132. mathtype IPower12( mathtype x ) {
  133.         x *= x; /* x^2 */
  134.         x *= x; /* x^4 */
  135.         return x * x * x; /* (x^4)^3 == x^12 */
  136. }
  137.  
  138. mathtype equation( mathtype y ) {
  139.         return ( log( IPower12( y/f ) ) ) / ln2;
  140. }
  141. >From brianarb@mindspring.com Thu Jan 11 11:57:03 PST 1996
  142. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id LAA22024 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 11:57:02 -0800 (PST)
  143. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id LAA00759 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 11:56:59 -0800
  144. Received: from borg.mindspring.com(204.180.128.14) by lionfish.rdatasys.com via smap (V1.3)
  145.         id sma000757; Thu Jan 11 11:56:51 1996
  146. Received: from brianarb.mindspring.com [168.121.38.146] by borg.mindspring.com
  147.         with SMTP id OAA05593 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 14:56:43 -0500
  148. Message-Id: <v01510102ad19cc7ca584@[168.121.38.146]>
  149. Mime-Version: 1.0
  150. Content-Type: text/plain; charset="us-ascii"
  151. Date: Wed, 10 Jan 1996 15:06:44 -0500
  152. To: think-c@rdatasys.com
  153. From: brianarb@mindspring.com (Brian Arb)
  154. Subject: Get me out of here
  155.  
  156. I asked to be taken off this mailing list some time ago, Now I'm back on it?
  157. Could some one please tell me were and what to write to get taken off the
  158. list once more
  159. Thanks
  160.  
  161.  
  162. >From steve@proaxis.com Thu Jan 11 13:11:58 PST 1996
  163. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id NAA26710 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 13:11:57 -0800 (PST)
  164. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id NAA04075 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 13:11:56 -0800
  165. Received: from taz.proaxis.com(198.68.7.1) by lionfish.rdatasys.com via smap (V1.3)
  166.         id sma004073; Thu Jan 11 13:11:54 1996
  167. Received: (from steve@localhost) by taz.proaxis.com (8.6.12/8.6.12) id NAA06068; Thu, 11 Jan 1996 13:11:45 -0800
  168. Date: Thu, 11 Jan 1996 13:11:44 -0800 (PST)
  169. From: Stephen Roderick <steve@proaxis.com>
  170. To: Brian Arb <brianarb@mindspring.com>
  171. cc: Multiple recipients of list <think-c@rdatasys.com>
  172. Subject: Re: Get me out of here
  173. In-Reply-To: <v01510102ad19cc7ca584@[168.121.38.146]>
  174. Message-ID: <Pine.BSD/.3.91.960111131052.6035A-100000@taz.proaxis.com>
  175. MIME-Version: 1.0
  176. Content-Type: TEXT/PLAIN; charset=US-ASCII
  177.  
  178. On Thu, 11 Jan 1996, Brian Arb wrote:
  179.  
  180. > I asked to be taken off this mailing list some time ago, Now I'm back on it?
  181. > Could some one please tell me were and what to write to get taken off the
  182. > list once more
  183. > Thanks
  184.  
  185. I'll bet you never got off. It's just been "dead" for ages and all of a 
  186. sudden we started getting messages again!
  187.  
  188.  
  189. Steve
  190.  
  191. ---
  192. Steve Roderick                                  ProAxis Communications, Inc.
  193. steve@proaxis.com                               Internet Access Provider
  194.                                                 (541) 757-0248
  195.  
  196. >From nagel@rdatasys.com Thu Jan 11 14:16:31 PST 1996
  197. Received: from rdatasys.com (nagel@amberjack.rdatasys.com [198.137.184.7]) by amberjack.rdatasys.com (8.7.3/8.7.3) with ESMTP id OAA00237; Thu, 11 Jan 1996 14:16:30 -0800 (PST)
  198. To: steve@proaxis.com
  199. cc: Multiple recipients of list <think-c@rdatasys.com>
  200. Subject: Re: Get me out of here 
  201. Reply-To: mark.nagel@rdatasys.com
  202. X-Organization: Relational Data Systems, Irvine, CA
  203. X-Phone: (714) 263-3899
  204. In-reply-to: Your message of Thu, 11 Jan 1996 13:14:53 -0800.
  205.      <Pine.BSD/.3.91.960111131052.6035A-100000@taz.proaxis.com> 
  206. Date: Thu, 11 Jan 1996 14:16:29 -0800
  207. Message-ID: <231.821398589@rdatasys.com>
  208. From: "Mark D. Nagel" <nagel@rdatasys.com>
  209.  
  210. On Thu, 11 Jan 1996 13:14:53 PST you wrote:
  211.  
  212.     I'll bet you never got off.  It's just been "dead" for ages and
  213.     all of a sudden we started getting messages again!
  214.  
  215. It hasn't been dead as in "the list software was down." It has been
  216. dead because no one has had anything to say (apparently).  Symantec's
  217. language products just don't seem too popular anymore.  I wonder
  218. why...
  219.  
  220. Mark
  221. >From timmu@gonzo.wolfenet.com Thu Jan 11 14:38:43 PST 1996
  222. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id OAA02049 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 14:38:42 -0800 (PST)
  223. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id OAA08277 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 14:38:41 -0800
  224. Received: from mail1.wolfe.net(204.157.98.11) by lionfish.rdatasys.com via smap (V1.3)
  225.         id sma008176; Thu Jan 11 14:38:20 1996
  226. Received: from FGALPHA (sea-ts1-p01.wolfenet.com [204.157.98.55]) by wolfe.net (8.7.3/8.7) with SMTP id OAA24981 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 14:44:06 -0800 (PST)
  227. Received: by FGALPHA with Microsoft Mail
  228.         id <01BAE032.66E17C30@FGALPHA>; Thu, 11 Jan 1996 14:37:58 -0800
  229. Message-ID: <01BAE032.66E17C30@FGALPHA>
  230. From: "timmu@wolfe" <timmu@gonzo.wolfenet.com>
  231. To: "'think-c@rdatasys.com'" <think-c@rdatasys.com>
  232. Subject: CodeWarrier
  233. Date: Thu, 11 Jan 1996 14:32:36 -0800
  234. MIME-Version: 1.0
  235. Content-Type: text/plain; charset="us-ascii"
  236. Content-Transfer-Encoding: 7bit
  237.  
  238. What do you Think C people think of Metrowerks CodeWarrier?
  239. >From rlg0301@rsb000.ks.boeing.com Thu Jan 11 14:58:07 PST 1996
  240. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id OAA03149 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 14:58:07 -0800 (PST)
  241. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id OAA09213 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 14:58:05 -0800
  242. Received: from atc.boeing.com(130.42.28.80) by lionfish.rdatasys.com via smap (V1.3)
  243.         id sma009202; Thu Jan 11 14:57:57 1996
  244. Received: by atc.boeing.com (5.65/splinter.boeing.com)
  245.         id AA27468; Thu, 11 Jan 1996 15:01:40 -0800
  246. Received: from rsb350.ks.boeing.com by kafka.ks.boeing.com with SMTP
  247.         (15.11/15.6) id AA10823; Thu, 11 Jan 96 16:49:35 cst
  248. Received: by rsb000.ks.boeing.com (AIX 3.2/UCB 5.64/4.03)
  249.           id AA16169; Thu, 11 Jan 1996 16:57:39 -0600
  250. Date: Thu, 11 Jan 1996 16:57:39 -0600 (CST)
  251. From: "Richard L. Grubb" <rlg0301@rsb000.ks.boeing.com>
  252. To: "timmu@wolfe" <timmu@gonzo.wolfenet.com>
  253. Cc: Multiple recipients of list <think-c@rdatasys.com>
  254. Subject: Re: CodeWarrier
  255. In-Reply-To: <01BAE032.66E17C30@FGALPHA>
  256. Message-Id: <Pine.A32.3.91.960111165054.22299A-100000@rsb350.ks.boeing.com>
  257. Mime-Version: 1.0
  258. Content-Type: TEXT/PLAIN; charset=US-ASCII
  259.  
  260. On Thu, 11 Jan 1996, timmu@wolfe wrote:
  261.  
  262. > What do you Think C people think of Metrowerks CodeWarrier?
  263. I've never had to look into CodeWarrier because Think C/Symantec C++ have 
  264. done everything I've wanted to do so far.  Not a very good answer for you 
  265. though :)
  266.  
  267. There was a thread a month or so  ago on comp.sys.mac.programmer.tools 
  268. about CodeWarrier vs Think/Symantec.  The subject pops up quite often.
  269. ----------------------------------------------------------------------------
  270. | Richard Grubb rlg0301@rsb000.ks.boeing.com || rgrubb@mail.elysian.net    |
  271. | #include "std_disclaimers.h"                                             |
  272. ----------------------------------------------------------------------------
  273.  
  274.  
  275. >From askwersk@mit.edu Thu Jan 11 17:17:04 PST 1996
  276. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id RAA10312 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 17:17:02 -0800 (PST)
  277. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id RAA15333 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 17:17:00 -0800
  278. Received: from pacific-carrier-annex.mit.edu(18.69.0.28) by lionfish.rdatasys.com via smap (V1.3)
  279.         id sma015331; Thu Jan 11 17:16:58 1996
  280. Received: from MIT.MIT.EDU by MIT.EDU with SMTP
  281.         id AA09551; Thu, 11 Jan 96 20:16:50 EST
  282. Received: from YAVIN.MIT.EDU by MIT.MIT.EDU (5.61/4.7) id AA23715; Thu, 11 Jan 96 20:16:54 EST
  283. Message-Id: <9601120116.AA23715@MIT.MIT.EDU>
  284. Date: Thu, 11 Jan 96 20:17:13 EST
  285. From: askwersk@mit.edu (Adam Skwersky)
  286. To: timmu@gonzo.wolfenet.com
  287. Subject: Re: CodeWarrier
  288. Cc: Multiple recipients of list <think-c@rdatasys.com>
  289.  
  290. > What do you Think C people think of Metrowerks CodeWarrier?
  291.  
  292. What I"m most interested in is comparing PowerPlant to Visual Architect...anyone?
  293.  
  294. Adam
  295. >From slb2@axe.humboldt.edu Thu Jan 11 18:18:05 PST 1996
  296. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id SAA13611 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 18:18:04 -0800 (PST)
  297. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id SAA17950 for <think-c@rdatasys.com>; Thu, 11 Jan 1996 18:18:01 -0800
  298. Received: from axe.humboldt.edu(137.150.148.10) by lionfish.rdatasys.com via smap (V1.3)
  299.         id sma017948; Thu Jan 11 18:17:53 1996
  300. Received: from 3.31.19.73 (axe.humboldt.edu)
  301.  by axe.humboldt.edu (PMDF V5.0-5 #11939) id <0DL1QDOOD00LR9@axe.humboldt.edu>;
  302.  Thu, 11 Jan 1996 18:17 -0800 (PST)
  303. Date: Thu, 11 Jan 1996 18:17:39 +0000
  304. From: Summer <slb2@axe.humboldt.edu>
  305. Subject: draw picture
  306. To: Multiple recipients of list <think-c@rdatasys.com>
  307. Reply-to: slb2@axe.humboldt.edu
  308. Message-id: <30F55443.31CE@axe.humboldt.edu>
  309. MIME-version: 1.0
  310. X-Mailer: Mozilla 2.0b5 (Macintosh; I; 68K)
  311. Content-type: text/plain; charset=us-ascii
  312. Content-transfer-encoding: 7bit
  313.  
  314. Hello
  315.         I am drawing a picture to a gworld using a custom GetPic proc.  If 
  316. the picture is compressed and decompressing fills the heap, 
  317. quickdraw crashes without giving me a chance to react.  Is there a 
  318. way to cancel a drawpicture from within my GetPic proc if I predict 
  319. a memory shortage?  Any other suggestions...
  320.  
  321. Thank You
  322. Eric Cole
  323. >From dnebing@epix.net Fri Jan 12 06:19:00 PST 1996
  324. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA19155 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 06:18:59 -0800 (PST)
  325. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA10527 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 06:18:56 -0800
  326. Received: from grape.epix.net(199.224.64.22) by lionfish.rdatasys.com via smap (V1.3)
  327.         id sma010525; Fri Jan 12 06:18:34 1996
  328. Received: from [199.224.69.44] (lwbyppp44.epix.net [199.224.69.44]) by epix.net (8.7.1/8.7) with SMTP id JAA21965 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 09:17:16 -0500 (EST)
  329. Message-Id: <v01530504ad1c18e92ec9@[199.224.69.44]>
  330. Mime-Version: 1.0
  331. Content-Type: text/plain; charset="us-ascii"
  332. Date: Fri, 12 Jan 1996 09:22:52 -0500
  333. To: think-c@rdatasys.com
  334. From: dnebing@epix.net (Dave Nebinger)
  335. Subject: Re: Get me out of here
  336.  
  337. >On Thu, 11 Jan 1996 13:14:53 PST Mark wrote:
  338. >
  339. >    I'll bet you never got off.  It's just been "dead" for ages and
  340. >    all of a sudden we started getting messages again!
  341. >
  342. >It hasn't been dead as in "the list software was down." It has been
  343. >dead because no one has had anything to say (apparently).  Symantec's
  344. >language products just don't seem too popular anymore.  I wonder
  345. >why...
  346.  
  347.   Maybe we all now understand 100% of the Mac  ;-)
  348.  
  349.   I think that what the Think-C list (and the Mac Develop list) need
  350. some fresh blood, some new programmers to prod us old-timers.
  351.  
  352.   Perhaps some advertising on comp.sys.mac.programmer.* is in
  353. order?
  354.  
  355. Dave.
  356.  
  357. ==========================================================
  358. Dave Nebinger                             dnebing@epix.net
  359.              The Alt.Sources.Mac Archivist
  360.  
  361.  
  362. >From timmu@gonzo.wolfenet.com Fri Jan 12 10:31:50 PST 1996
  363. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA02628 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 10:31:49 -0800 (PST)
  364. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA19201 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 10:31:47 -0800
  365. Received: from mail1.wolfe.net(204.157.98.11) by lionfish.rdatasys.com via smap (V1.3)
  366.         id sma019196; Fri Jan 12 10:31:31 1996
  367. Received: from FGALPHA (sea-ts1-p14.wolfenet.com [204.157.98.68]) by wolfe.net (8.7.3/8.7) with SMTP id KAA17271 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 10:37:20 -0800 (PST)
  368. Received: by FGALPHA with Microsoft Mail
  369.         id <01BAE0D9.1C3C2A20@FGALPHA>; Fri, 12 Jan 1996 10:31:19 -0800
  370. Message-ID: <01BAE0D9.1C3C2A20@FGALPHA>
  371. From: "timmu@wolfe" <timmu@gonzo.wolfenet.com>
  372. To: "'Think C'" <think-c@rdatasys.com>
  373. Subject: RE: CodeWarrier
  374. Date: Fri, 12 Jan 1996 10:12:42 -0800
  375. MIME-Version: 1.0
  376. Content-Type: text/plain; charset="us-ascii"
  377. Content-Transfer-Encoding: quoted-printable
  378.  
  379. > ----------
  380. > From:         Adam Skwersky
  381. > Sent:         Thursday, January 11, 1996 5:19 PM
  382. > To:   Multiple recipients of list
  383. > Subject:      Re: CodeWarrier
  384. >=20
  385. > > What do you Think C people think of Metrowerks CodeWarrier?
  386. >=20
  387. > What I"m most interested in is comparing PowerPlant to Visual > =
  388. Architect...anyone?
  389. >=20
  390.  
  391. I'd like to learn how to use PowerPlant, anyone have any =
  392. suggestions/hints on how to get started?  I'm mostly a beginner who has =
  393. been tinkering for a short time, without really getting into it.  I have =
  394. used the toolbox in a limitted way and would like to make life simpler =
  395. (ya right).
  396. >From thatsu@leland.stanford.edu Fri Jan 12 10:54:23 PST 1996
  397. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA03917 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 10:54:21 -0800 (PST)
  398. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA20292 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 10:54:20 -0800
  399. Received: from popserver.stanford.edu(36.21.0.129) by lionfish.rdatasys.com via smap (V1.3)
  400.         id sma020290; Fri Jan 12 10:54:05 1996
  401. Received: from [171.65.88.135] (S069-Quadra610.Stanford.EDU [171.65.88.135]) by popserver.Stanford.EDU (8.7.3/8.7.3) with SMTP id KAA00259 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 10:53:43 -0800 (PST)
  402. X-Sender: thatsu@Popserver
  403. Message-Id: <v01530500ad1c5cb0e347@[171.65.88.135]>
  404. Mime-Version: 1.0
  405. Content-Type: text/plain; charset="us-ascii"
  406. Date: Fri, 12 Jan 1996 10:53:59 -0800
  407. To: Multiple recipients of list <think-c@rdatasys.com>
  408. From: thatsu@leland.stanford.edu (Thomas Hartmann)
  409. Subject: Think C Profiler
  410.  
  411. Hi all:
  412.  
  413. How useful is the profiler in Think C? I used it for a while to monitor
  414. performance of some subroutines.  As the program grew in size when I tried
  415. to use the profiler again the returned information was incomplete.  First,
  416. certain procedures which were definitely called by the program were not
  417. reported, later the profiler log file was plain empty!
  418. Did anybody else observe this?
  419.  
  420. Thanks for your advice,
  421.  
  422. Thomas Hartmann
  423. thatsu@leland.stanford.edu
  424.  
  425.  
  426. >From C.Tweed@Queens-Belfast.AC.UK Fri Jan 12 17:10:16 PST 1996
  427. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id RAA24349 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 17:10:14 -0800 (PST)
  428. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id RAA04216 for <think-c@rdatasys.com>; Fri, 12 Jan 1996 17:10:12 -0800
  429. Received: from nzambi.qub.ac.uk(143.117.14.23) by lionfish.rdatasys.com via smap (V1.3)
  430.         id sma004161; Fri Jan 12 17:10:01 1996
  431. Received: from v2.qub.ac.uk by Nzambi.qub.ac.uk with SMTP (PP);
  432.           Sat, 13 Jan 1996 00:18:29 +0000
  433. Received: by v2.qub.ac.uk (MX V4.1 VAX) id 2; Sat, 13 Jan 1996 00:18:33 +0000
  434. Date: Sat, 13 Jan 1996 00:18:31 +0000
  435. From: Chris Tweed <C.Tweed@Queens-Belfast.AC.UK>
  436. To: think-c@rdatasys.com
  437. CC: C.Tweed@Queens-Belfast.AC.UK
  438. Message-ID: <0099C4D5.21ED2C40.2@v2.qub.ac.uk>
  439. Subject: Help: code size explosion
  440.  
  441.  
  442. I've been developing an application starting with Think C 5.0.x and TCL 1.1.x
  443. and have recently ported it to the 68k C++ compiler (Think C 7.0.6).  The
  444. standalone application size has doubled - from roughly 380k to nearly 900k.
  445. Is there anything I can do to reduce the size?  I've tried to figure out if
  446. there are any parts of TCL 2.0.5 I can leave out but there are so many
  447. dependencies between classes that it seems to be impossible to isolate
  448. parts even though my code does not use them.  Any help you can offer would
  449. be greatly appreciated.
  450.  
  451. Thanks
  452.  
  453. chris
  454.  
  455. C.Tweed@qub.ac.uk
  456. >From robm@shore.net Sat Jan 13 05:31:05 PST 1996
  457. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id FAA01707 for <think-c@rdatasys.com>; Sat, 13 Jan 1996 05:31:03 -0800 (PST)
  458. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id FAA27994 for <think-c@rdatasys.com>; Sat, 13 Jan 1996 05:31:01 -0800
  459. Received: from northshore.ecosoft.com(192.233.85.129) by lionfish.rdatasys.com via smap (V1.3)
  460.         id sma027992; Sat Jan 13 05:30:46 1996
  461. Received: from [198.56.76.61] by northshore.ecosoft.com with SMTP id AA22836
  462.   (5.67a/IDA-1.5 for <think-c@rdatasys.com>); Sat, 13 Jan 1996 08:29:09 -0500
  463. X-Sender: robm@mailhost.shore.net
  464. Message-Id: <v02120d01ad1d10437643@[198.56.76.61]>
  465. Mime-Version: 1.0
  466. Content-Type: text/plain; charset="us-ascii"
  467. Date: Sat, 13 Jan 1996 08:34:15 +0100
  468. To: timmu@gonzo.wolfenet.com,
  469.         Multiple recipients of list <think-c@rdatasys.com>
  470. From: robm@shore.net (Rob Mitchell)
  471. Subject: Re: CodeWarrier
  472.  
  473. At 2:39 PM 1/11/96, timmu@wolfe wrote:
  474. >What do you Think C people think of Metrowerks CodeWarrier?
  475.  
  476. This topic gets rather religious after a while ... beware.
  477.  
  478. Personally, I ended up switching from Think C/C++ to CodeWarrior
  479. to take advantage of my company's PowerPC.  I like the development
  480. environment then and now.  I kinda feel sorry for Symantec, tho'.
  481. I have seen their v8.x stuff and it looks pretty cool, except that it only
  482. ran on PowerPCs which was (still is?) a problem for my 68K associates.
  483.  
  484. Good luck.
  485.  
  486. Rob Mitchell  Macintosh Software Developer
  487. (robm@shore.net)
  488.  
  489.  
  490. >From huberr@balu.kfunigraz.ac.at Sat Jan 13 07:11:31 PST 1996
  491. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id HAA06537 for <Think-c@rdatasys.com>; Sat, 13 Jan 1996 07:11:30 -0800 (PST)
  492. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id HAA01691 for <Think-c@rdatasys.com>; Sat, 13 Jan 1996 07:11:27 -0800
  493. Message-Id: <199601131511.HAA01691@lionfish.rdatasys.com>
  494. Received: from balu.kfunigraz.ac.at(143.50.16.16) by lionfish.rdatasys.com via smap (V1.3)
  495.         id sma001680; Sat Jan 13 07:10:52 1996
  496. Received: from [143.50.28.85] (bzoo36.kfunigraz.ac.at) by balu.kfunigraz.ac.at with SMTP
  497.         (1.37.109.16/16.2) id AA296475801; Sat, 13 Jan 1996 16:10:01 +0100
  498. Date: Sat, 13 Jan 1996 16:10:01 +0100
  499. From: "Robert "lobsterman" Huber"  <huberr@balu.kfunigraz.ac.at>
  500. Reply-To: "Robert "lobsterman" Huber"  <huberr@balu.kfunigraz.ac.at>
  501. To: Think-c@rdatasys.com
  502. Subject: Re: CodeWarrier
  503.  
  504. > >What do you Think C people think of Metrowerks CodeWarrier?
  505. > Personally, I ended up switching from Think C/C++ to CodeWarrior
  506. same here, just been hanging out for sentimental reasons, IMHO think c and think
  507. pascal were wonderful products, tcl was/is great but codewarrior is much slicker
  508. and the support community is better. with the TCL to powerplant porting package 
  509. the switch was half as bad. I just wish there would be something similar for my 
  510. pascal TCL projects - dont get me started, i just shut up and let symantec for 
  511. mac flounder some more.
  512.  
  513. stay well,
  514. lobsterman
  515.  
  516. Robert Huber                                              /\ 
  517. Snailmail: University Graz, Dept. Zoology                /  \
  518.  A-8010 Graz, Austria                                 __/____\__
  519.  Universitaetsplatz 2                                 |_|____|_|
  520. http://wwwzoo.kfunigraz.ac.at/cgi-bin/lobsterman.acgi  |  /\  |
  521. Email: Robert.Huber@kfunigraz.ac.at                    |  \/  |_
  522. Tel: Austria (316) 380-5281 (office)                   |     _/
  523.  380-5604 (lab) 380-5597 (secretary)                   |____/
  524. Fax: Austria (316) 381-255                          __/ Grazer 
  525. ___________________________________________________/    Uhrturm
  526. I can't see Texas from here - and Harvard Square neither
  527.  
  528. >From EnkerliA@ERE.UMontreal.CA Sun Jan 14 11:05:40 PST 1996
  529. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id LAA26482 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 11:05:39 -0800 (PST)
  530. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id LAA26575 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 11:05:38 -0800
  531. Received: from harfang.cc.umontreal.ca(132.204.2.102) by lionfish.rdatasys.com via smap (V1.3)
  532.         id sma026573; Sun Jan 14 11:05:36 1996
  533. Received: from eole.ERE.UMontreal.CA (eole.ERE.UMontreal.CA [132.204.10.20]) by harfang.CC.UMontreal.CA with ESMTP id OAA12512
  534.   (8.6.11/IDA-1.6 for <think-c@rdatasys.com>); Sun, 14 Jan 1996 14:04:21 -0500
  535. Received: from mistral.ERE.UMontreal.CA by eole.ERE.UMontreal.CA (950221.405.SGI.8.6.10/5.17)
  536.         id OAA06417; Sun, 14 Jan 1996 14:04:17 -0500
  537. Received: from DialupEudora by mistral.ERE.UMontreal.CA (950221.405.SGI.8.6.10/5.17)
  538.         id OAA09545; Sun, 14 Jan 1996 14:04:14 -0500
  539. X-Sender: enkerlia@mistral.ere.umontreal.ca
  540. Message-Id: <v02130504ad2044994a62@[10.0.2.15]>
  541. Mime-Version: 1.0
  542. Content-Type: text/plain; charset="us-ascii"
  543. Date: Mon, 15 Jan 1996 14:03:03 -0400
  544. To: think-c@rdatasys.com
  545. From: EnkerliA@ERE.UMontreal.CA (Alexandre Enkerli)
  546. Subject: CodeWarrior
  547.  
  548. I just received my copy of CodeWarrior Academic 7. Great stuff. Only 99$
  549. (Academic version). Think-C was good too. I don't need much, though.
  550.  
  551.  
  552. >From JeffC@cc.snow.edu Sun Jan 14 13:10:56 PST 1996
  553. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id NAA02546 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 13:10:55 -0800 (PST)
  554. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id NAA01073 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 13:10:52 -0800
  555. Received: from cc1.snow.edu(144.17.1.3) by lionfish.rdatasys.com via smap (V1.3)
  556.         id sma001069; Sun Jan 14 13:10:48 1996
  557. Received: from [144.17.30.135] by 144.17.30.135 with SMTP;
  558.           Sun, 14 Jan 1996 14:10:32 -0700 (MST)
  559. X-Sender: JeffC@144.17.1.2
  560. Message-Id: <v01510102ad1f21b27395@[144.17.30.135]>
  561. Mime-Version: 1.0
  562. Content-Type: text/plain; charset="us-ascii"
  563. Date: Sun, 14 Jan 1996 14:12:42 -0700
  564. To: think-c@rdatasys.com
  565. From: JeffC@cc.snow.edu (Jeff Carney)
  566. Subject: ThinkC 5 Bug
  567.  
  568. Do I remember correctly that ThinkC 5 has a debugging bug that causes bombs
  569. and things after calls to PBGetCatInfo while the debugger is going?  I keep
  570. getting a number of random bombs after such calls, but cannot reproduce
  571. them when the debugger is off.  Does this sound familiar?
  572.  
  573. Jeff
  574.  
  575.  
  576. >From JeffC@cc.snow.edu Sun Jan 14 13:10:56 PST 1996
  577. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id NAA02547 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 13:10:55 -0800 (PST)
  578. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id NAA01072 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 13:10:52 -0800
  579. Received: from cc1.snow.edu(144.17.1.3) by lionfish.rdatasys.com via smap (V1.3)
  580.         id sma001068; Sun Jan 14 13:10:45 1996
  581. Received: from [144.17.30.135] by 144.17.30.135 with SMTP;
  582.           Sun, 14 Jan 1996 14:10:29 -0700 (MST)
  583. X-Sender: JeffC@144.17.1.2
  584. Message-Id: <v01510100ad1f214b5b6d@[144.17.30.135]>
  585. Mime-Version: 1.0
  586. Content-Type: text/plain; charset="us-ascii"
  587. Date: Sun, 14 Jan 1996 14:12:40 -0700
  588. To: think-c@rdatasys.com
  589. From: JeffC@cc.snow.edu (Jeff Carney)
  590. Subject: Re: CodeWarrior
  591.  
  592. >I just received my copy of CodeWarrior Academic 7. Great stuff. Only 99$
  593. >(Academic version). Think-C was good too. I don't need much, though.
  594.  
  595. Is this version just priced differently, or does it come with limited
  596. features?  Does it compile for both cpus?  I've never heard of it before?
  597.  
  598. Jeff
  599.  
  600.  
  601. >From ahk12@mailhub.cc.columbia.edu Sun Jan 14 13:53:57 PST 1996
  602. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id NAA04697 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 13:53:57 -0800 (PST)
  603. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id NAA03052 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 13:53:56 -0800
  604. Received: from mailrelay1.cc.columbia.edu(128.59.35.143) by lionfish.rdatasys.com via smap (V1.3)
  605.         id sma003050; Sun Jan 14 13:53:54 1996
  606. Received: from [128.59.234.62] (nemesis.wal.rhno.columbia.edu [128.59.234.62]) by mailrelay1.cc.columbia.edu (8.7.3/8.7.3) with SMTP id QAA22837 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 16:53:32 -0500 (EST)
  607. Message-Id: <v01530503ad1f2e37eabe@[128.59.234.62]>
  608. Mime-Version: 1.0
  609. Content-Type: text/plain; charset="us-ascii"
  610. Date: Sun, 14 Jan 1996 17:03:56 -0500
  611. To: Multiple recipients of list <think-c@rdatasys.com>
  612. From: ahk12@mailhub.cc.columbia.edu (Arnold Kim)
  613. Subject: Re: CodeWarrior
  614.  
  615.  
  616. >Is this version just priced differently, or does it come with limited
  617. >features?  Does it compile for both cpus?  I've never heard of it before?
  618.  
  619.  
  620. Codewarrior Academic is equivalent to the fully featured CodeWarrior.  It
  621. will compile for both CPUs, and now will compile x86 code also. I'm not
  622. sure what platinum is... but early on when there was only Bronze, Silver
  623. and Gold, the academic was equiv to the Gold.
  624.  
  625. I think the only restriction is that you can't produce Commercial software
  626. with the Academic version.  (shareware is allowed)
  627.  
  628. arnold
  629.  
  630.  
  631.  
  632. >From DonPoletti@aol.com Sun Jan 14 16:12:11 PST 1996
  633. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id QAA11270 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 16:12:10 -0800 (PST)
  634. From: DonPoletti@aol.com
  635. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id QAA07723 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 16:12:08 -0800
  636. Received: from mail06.mail.aol.com(152.163.172.108) by lionfish.rdatasys.com via smap (V1.3)
  637.         id sma007715; Sun Jan 14 16:12:04 1996
  638. Received: by mail06.mail.aol.com (8.6.12/8.6.12) id TAA07391 for think-c@rdatasys.com; Sun, 14 Jan 1996 19:11:50 -0500
  639. Date: Sun, 14 Jan 1996 19:11:50 -0500
  640. Message-ID: <960114191148_41691286@mail06.mail.aol.com>
  641. To: think-c@rdatasys.com
  642. Subject: What am I doing on this list
  643.  
  644. How do I get off this list?
  645. >From huberr@balu.kfunigraz.ac.at Sun Jan 14 23:55:39 PST 1996
  646. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id XAA02756 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 23:55:38 -0800 (PST)
  647. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id XAA22597 for <think-c@rdatasys.com>; Sun, 14 Jan 1996 23:55:36 -0800
  648. Message-Id: <199601150755.XAA22597@lionfish.rdatasys.com>
  649. Received: from balu.kfunigraz.ac.at(143.50.16.16) by lionfish.rdatasys.com via smap (V1.3)
  650.         id sma022591; Sun Jan 14 23:55:17 1996
  651. Received: from [143.50.28.85] (bzoo36.kfunigraz.ac.at) by balu.kfunigraz.ac.at with SMTP
  652.         (1.37.109.16/16.2) id AA100112497; Mon, 15 Jan 1996 08:54:57 +0100
  653. Date: Mon, 15 Jan 1996 08:54:57 +0100
  654. From: "Robert "lobsterman" Huber"  <huberr@balu.kfunigraz.ac.at>
  655. Reply-To: "Robert "lobsterman" Huber"  <huberr@balu.kfunigraz.ac.at>
  656. To: think-c@rdatasys.com
  657. Subject: Re: CodeWarrior
  658.  
  659. Jeff sez:
  660. > >I just received my copy of CodeWarrior Academic 7. Great stuff. Only 99$
  661. > >(Academic version). Think-C was good too. I don't need much, though.
  662. > Is this version just priced differently, or does it come with limited
  663. > features?  Does it compile for both cpus?  I've never heard of it before?
  664.  
  665. it is just a reduced price for academic uses without reduction of features (as 
  666. far as ic an tell) it comes standard with Pascal, Object Pascal, C and C++ 
  667. compilers, a cross compiler for windows which performs perfect on our mac with 
  668. dos card, and it cross comiles for magic cap and newton, which i have not 
  669. tested.
  670.  
  671. also metrowerks (contrary to Symantec) gets out of their way to keep you up to 
  672. date. i have been bying every version of the think c and pascal compilers for 
  673. the last decade, have registered every product and the only announcements that i
  674. get is junk on windows utilities :-P
  675.  
  676. if you have not looked into codewarrior, you should check it out.
  677.  
  678. lobsterman
  679.  
  680. Robert Huber                                              /\ 
  681. Snailmail: University Graz, Dept. Zoology                /  \
  682.  A-8010 Graz, Austria                                 __/____\__
  683.  Universitaetsplatz 2                                 |_|____|_|
  684. http://wwwzoo.kfunigraz.ac.at/cgi-bin/lobsterman.acgi  |  /\  |
  685. Email: Robert.Huber@kfunigraz.ac.at                    |  \/  |_
  686. Tel: Austria (316) 380-5281 (office)                   |     _/
  687.  380-5604 (lab) 380-5597 (secretary)                   |____/
  688. Fax: Austria (316) 381-255                          __/ Grazer 
  689. ___________________________________________________/    Uhrturm
  690. I can't see Texas from here - and Harvard Square neither
  691.  
  692. >From jpff@maths.bath.ac.uk Mon Jan 15 03:03:27 PST 1996
  693. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id DAA12560 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 03:03:14 -0800 (PST)
  694. From: jpff@maths.bath.ac.uk
  695. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id DAA27894 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 03:03:12 -0800
  696. Message-Id: <199601151103.DAA27894@lionfish.rdatasys.com>
  697. Received: from goggins.bath.ac.uk(138.38.32.13) by lionfish.rdatasys.com via smap (V1.3)
  698.         id sma027866; Mon Jan 15 03:03:10 1996
  699. Received: from maths.Bath.AC.UK (actually host omphalos.maths.bath.ac.uk) 
  700.           by goggins.bath.ac.uk with SMTP (PP); Mon, 15 Jan 1996 10:56:09 +0000
  701. Date:     Mon, 15 Jan 96 11:00:10 GMT
  702. Subject:  Help sought re libraries
  703. To: think-c@rdatasys.com
  704.  
  705. Message written at 15 Jan 1996 09:53:35 +0000
  706.  
  707. I have detected a bug in the ANSI C library which is a problem to me,
  708. so as well as reporting it I have fixed the source, but now I cannot
  709. rebuild the libraries.
  710.  
  711. The fix is in file.c, and affects both 68K and PCC.
  712.  
  713. If I attempt to build a PPC versio of teh library I variously get
  714. error -1708 and 1024.  I think I am totally confused with shared
  715. libraries and static libraries.  In the latest attempt I have included
  716. PCCANSI.(pi) in my project, and when I attempt to bring my project up
  717. to date it then keeps jumping to PCCANSI and asks me where to build
  718. PCCANSI.(pi) and then says it couldn't complete the last command as it
  719. could not locate ToolServer, whatever that it.
  720.  
  721. If I change the library to other types I get other odd efects like always 
  722. asking to rebuild the library, and then not creating the application.
  723.  
  724. i have tried reading teh manual but it does not seem to offer any
  725. detailed advise.
  726.  
  727. I would appreciate a description of how to rebuild a fixed library for
  728. both architectures in all styles.  I have tried including all the
  729. sources from the library directly in my project and that seemed to
  730. fail as well, in various bizarre ways.
  731.  
  732. ==John Fitch
  733. >From dnebing@epix.net Mon Jan 15 10:09:43 PST 1996
  734. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA02523 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 10:09:42 -0800 (PST)
  735. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA12890 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 10:09:40 -0800
  736. Received: from grape.epix.net(199.224.64.22) by lionfish.rdatasys.com via smap (V1.3)
  737.         id sma012888; Mon Jan 15 10:09:35 1996
  738. Received: from [199.224.69.58] (lwbyppp58.epix.net [199.224.69.58]) by epix.net (8.7.1/8.7) with SMTP id NAA19643; Mon, 15 Jan 1996 13:08:26 -0500 (EST)
  739. Message-Id: <v01530504ad20452ae95f@[199.224.69.44]>
  740. Mime-Version: 1.0
  741. Content-Type: text/plain; charset="us-ascii"
  742. Date: Mon, 15 Jan 1996 13:14:06 -0500
  743. To: mac-develop@cc.umanitoba.ca, think-c@rdatasys.com
  744. From: dnebing@epix.net (Dave Nebinger)
  745. Subject: Alt.sources.mac archive
  746.  
  747. For those of you who haven't heard, the alt.sources.mac archive
  748. is alive again.
  749.  
  750. Currently only supported by anonymous FTP, the archive will soon
  751. have a WWW interface (I am currently designing the pages; they
  752. will be available soon ;-)
  753.  
  754. Check out the archive:
  755.  
  756.   <ftp://ftp.AmbrosiaSW.com/pub/alt.sources.mac/>
  757.   <http://www.AmbrosiaSW.com/alt.sources.mac/>
  758.  
  759. Dave.
  760.  
  761. ==========================================================
  762. Dave Nebinger                             dnebing@epix.net
  763.              The Alt.Sources.Mac Archivist
  764.  
  765.  
  766. >From dnebing@epix.net Mon Jan 15 10:10:11 PST 1996
  767. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA02562 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 10:10:11 -0800 (PST)
  768. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA12945 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 10:10:09 -0800
  769. Received: from grape.epix.net(199.224.64.22) by lionfish.rdatasys.com via smap (V1.3)
  770.         id sma012891; Mon Jan 15 10:09:40 1996
  771. Received: from [199.224.69.58] (lwbyppp58.epix.net [199.224.69.58]) by epix.net (8.7.1/8.7) with SMTP id NAA19724 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 13:08:37 -0500 (EST)
  772. Message-Id: <v01530507ad20476d7188@[199.224.69.44]>
  773. Mime-Version: 1.0
  774. Content-Type: text/plain; charset="us-ascii"
  775. Date: Mon, 15 Jan 1996 13:14:16 -0500
  776. To: think-c@rdatasys.com
  777. From: dnebing@epix.net (Dave Nebinger)
  778. Subject: Re: Help sought re libraries
  779.  
  780. >Message written at 15 Jan 1996 09:53:35 +0000
  781. >
  782. >I have detected a bug in the ANSI C library which is a problem to me,
  783. >so as well as reporting it I have fixed the source, but now I cannot
  784. >rebuild the libraries.
  785. >
  786. >The fix is in file.c, and affects both 68K and PCC.
  787.  
  788. Could you include the bug and the fix?  I think we would all be
  789. interested...
  790.  
  791. >If I attempt to build a PPC versio of teh library I variously get
  792. >error -1708 and 1024.
  793.  
  794. These errors will be encountered if you have disabled applescript.
  795. Sym C++ 8.0 uses applescript, sent to Apple's ToolServer, to use
  796. Apple's linker (required to build static libraries).  What this means
  797. is that you cannot use Apple's linker if you have disabled applescript
  798. when your system starts up.
  799.  
  800. Make sure that you have apple script, and that it is properly installed
  801. on your Mac.  That will clear these problems up for you.
  802.  
  803. Dave.
  804.  
  805. ==========================================================
  806. Dave Nebinger                             dnebing@epix.net
  807.              The Alt.Sources.Mac Archivist
  808.  
  809.  
  810. >From swenson@skivs.ski.org Mon Jan 15 11:08:32 PST 1996
  811. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id LAA06104 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 11:08:31 -0800 (PST)
  812. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id LAA15735 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 11:08:29 -0800
  813. Received: from skivs.ski.org(192.207.85.11) by lionfish.rdatasys.com via smap (V1.3)
  814.         id sma015733; Mon Jan 15 11:08:10 1996
  815. Received: from [192.207.85.43] (Lassen.ski.org) by skivs.ski.org (4.1/SMI-4.1)
  816.         id AA24603; Mon, 15 Jan 96 11:09:35 PST
  817. Message-Id: <v01530500ad2054fdc854@[192.207.85.43]>
  818. Mime-Version: 1.0
  819. Content-Type: text/plain; charset="us-ascii"
  820. Date: Mon, 15 Jan 1996 11:07:34 -0800
  821. To: think-c@rdatasys.com
  822. From: swenson@skivs.ski.org (Kirk Swenson)
  823. Subject: Re: CodeWarrior
  824.  
  825. >>I just received my copy of CodeWarrior Academic 7. Great stuff. Only 99$
  826. >>(Academic version). Think-C was good too. I don't need much, though.
  827. >
  828. >Is this version just priced differently, or does it come with limited
  829. >features?  Does it compile for both cpus?  I've never heard of it before?
  830.  
  831. The Academic Version of CodeWarrior is only available to students (and
  832. possibly others in the world of academia), and the license states that it
  833. cannot be used to produce commercial software.  If you want to create
  834. something for sale, you have to upgrade to the full version to stay within
  835. the terms of the license.  For more details, ask this question on the
  836. CodeWarrior newsgroup where it is more appropriate.
  837.  
  838. Since this is Symantec's list, I should point out that Symantec also has
  839. academic pricing plans, or at least did the last time I talked to someone
  840. in academia about it.  If you are interested in Symantec's options, ask
  841. them.
  842.  
  843. Kirk Swenson
  844. Senior Programmer
  845. Smith-Kettlewell Eye Research Institute
  846. swenson@skivs.ski.org
  847.  
  848.  
  849. >From timmu@gonzo.wolfenet.com Mon Jan 15 13:54:00 PST 1996
  850. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id NAA17131 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 13:53:59 -0800 (PST)
  851. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id NAA22528 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 13:53:57 -0800
  852. Received: from mail1.wolfe.net(204.157.98.11) by lionfish.rdatasys.com via smap (V1.3)
  853.         id sma022526; Mon Jan 15 13:53:53 1996
  854. Received: from FGALPHA (sea-ts1-p36.wolfenet.com [204.157.98.90]) by wolfe.net (8.7.3/8.7) with SMTP id NAA24688 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 13:59:46 -0800 (PST)
  855. Received: by FGALPHA with Microsoft Mail
  856.         id <01BAE350.E21E5F00@FGALPHA>; Mon, 15 Jan 1996 13:53:43 -0800
  857. Message-ID: <01BAE350.E21E5F00@FGALPHA>
  858. From: "timmu@wolfe" <timmu@gonzo.wolfenet.com>
  859. To: Multiple recipients of list <think-c@rdatasys.com>,
  860.         "'swenson@skivs.ski.org'" <swenson@skivs.ski.org>
  861. Subject: RE: CodeWarrior
  862. Date: Mon, 15 Jan 1996 13:52:37 -0800
  863. MIME-Version: 1.0
  864. Content-Type: text/plain; charset="us-ascii"
  865. Content-Transfer-Encoding: 7bit
  866.  
  867. does codewarrier have a listserve?  That is how I get these messages.  If so, do you know what it is?
  868.  
  869.  
  870. ----------
  871. From:   Kirk Swenson
  872. Sent:   Monday, January 15, 1996 11:12 AM
  873. To:     Multiple recipients of list
  874. Subject:        Re: CodeWarrior
  875.  
  876. >>I just received my copy of CodeWarrior Academic 7. Great stuff. Only 99$
  877. >>(Academic version). Think-C was good too. I don't need much, though.
  878. >
  879. >Is this version just priced differently, or does it come with limited
  880. >features?  Does it compile for both cpus?  I've never heard of it before?
  881.  
  882. The Academic Version of CodeWarrior is only available to students (and
  883. possibly others in the world of academia), and the license states that it
  884. cannot be used to produce commercial software.  If you want to create
  885. something for sale, you have to upgrade to the full version to stay within
  886. the terms of the license.  For more details, ask this question on the
  887. CodeWarrior newsgroup where it is more appropriate.
  888.  
  889. Since this is Symantec's list, I should point out that Symantec also has
  890. academic pricing plans, or at least did the last time I talked to someone
  891. in academia about it.  If you are interested in Symantec's options, ask
  892. them.
  893.  
  894. Kirk Swenson
  895. Senior Programmer
  896. Smith-Kettlewell Eye Research Institute
  897. swenson@skivs.ski.org
  898.  
  899.  
  900.  
  901.  
  902. >From quilts@bluefin.net Mon Jan 15 16:09:24 PST 1996
  903. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id QAA26305 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 16:09:23 -0800 (PST)
  904. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id QAA27977 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 16:09:20 -0800
  905. Received: from service.bluefin.net(205.162.79.2) by lionfish.rdatasys.com via smap (V1.3)
  906.         id sma027964; Mon Jan 15 16:08:54 1996
  907. Received: from ja.bluefin.net (ja.bluefin.net [205.162.66.31]) by service.bluefin.net (8.6.9/8.6.9) with SMTP id TAA10677; Mon, 15 Jan 1996 19:08:37 -0500
  908. Message-ID: <30FB176B.5E49@bluefin.net>
  909. Date: Mon, 15 Jan 1996 19:11:39 -0800
  910. From: Cynthia Harris <quilts@bluefin.net>
  911. X-Mailer: Mozilla 2.0b5 (Win16; I)
  912. MIME-Version: 1.0
  913. To: DonPoletti@aol.com
  914. CC: Multiple recipients of list <think-c@rdatasys.com>
  915. Subject: Re: What am I doing on this list
  916. References: <960114191148_41691286@mail06.mail.aol.com>
  917. Content-Type: text/plain; charset=us-ascii
  918. Content-Transfer-Encoding: 7bit
  919.  
  920. DonPoletti@aol.com wrote:
  921. > How do I get off this list?I'd like to know also! My fiance subscribed and then got another email 
  922. address. I don't have a clue to what y'all are talking about.
  923. -- 
  924.  
  925. Cynthia Harris, in snowy NH
  926. mailto:quilts@bluefin.net
  927. >From nagel@rdatasys.com Mon Jan 15 16:34:14 PST 1996
  928. Received: from rdatasys.com (nagel@amberjack.rdatasys.com [198.137.184.7]) by amberjack.rdatasys.com (8.7.3/8.7.3) with ESMTP id QAA28168 for <think-c>; Mon, 15 Jan 1996 16:34:13 -0800 (PST)
  929. To: think-c@amberjack.rdatasys.com
  930. Subject: ADMIN: how to get off the list
  931. Reply-To: mark.nagel@rdatasys.com
  932. X-Organization: Relational Data Systems, Irvine, CA
  933. X-Phone: (714) 263-3899
  934. Date: Mon, 15 Jan 1996 16:34:12 -0800
  935. Message-ID: <28162.821752452@rdatasys.com>
  936. From: "Mark D. Nagel" <nagel@rdatasys.com>
  937.  
  938. This list is managed automatically by a LISTPROC server.  To
  939. communicate with the server, send mail to listproc@rdatasys.com.
  940. Specifically, to unsubscribe from this list, send a message to
  941. listproc@rdatasys.com with the message body (NOT the subject) set
  942. to:
  943.  
  944.         UNSUBSCRIBE THINK-C
  945.  
  946. Note: You MUST do this from the address you originally subscribed
  947. from.  If you no longer have access to the original account from which
  948. you subscribed, please send mail to nagel@rdatasys.com and I will
  949. manually delete your address from the list.  Please do NOT send a
  950. message to think-c@rdatasys.com asking all 550+ people on the list how
  951. to unsubscribe.
  952.  
  953. Thanks,
  954. Mark Nagel, List Guy
  955. >From EnkerliA@ERE.UMontreal.CA Mon Jan 15 23:39:28 PST 1996
  956. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id XAA12283 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 23:39:27 -0800 (PST)
  957. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id XAA14316 for <think-c@rdatasys.com>; Mon, 15 Jan 1996 23:39:24 -0800
  958. Received: from harfang.cc.umontreal.ca(132.204.2.102) by lionfish.rdatasys.com via smap (V1.3)
  959.         id sma014314; Mon Jan 15 23:39:12 1996
  960. Received: from eole.ERE.UMontreal.CA (eole.ERE.UMontreal.CA [132.204.10.20]) by harfang.CC.UMontreal.CA with ESMTP id CAA28039
  961.   (8.6.11/IDA-1.6 for <think-c@rdatasys.com>); Tue, 16 Jan 1996 02:37:43 -0500
  962. Received: from mistral.ERE.UMontreal.CA by eole.ERE.UMontreal.CA (950221.405.SGI.8.6.10/5.17)
  963.         id CAA09948; Tue, 16 Jan 1996 02:37:41 -0500
  964. Received: from DialupEudora by mistral.ERE.UMontreal.CA (950221.405.SGI.8.6.10/5.17)
  965.         id CAA12878; Tue, 16 Jan 1996 02:37:39 -0500
  966. X-Sender: enkerlia@mistral.ere.umontreal.ca
  967. Message-Id: <v02130502ad2247adff00@[10.0.2.15]>
  968. Mime-Version: 1.0
  969. Content-Type: text/plain; charset="us-ascii"
  970. Date: Wed, 17 Jan 1996 02:36:29 -0400
  971. To: think-c@rdatasys.com
  972. From: EnkerliA@ERE.UMontreal.CA (Alexandre Enkerli)
  973. Subject: CodeWarrior Academic
  974.  
  975. It really is the exact same thing as the Gold version: even the discs are
  976. named "Gold" (although the labels indicate "Academic"). It cost me 99$US
  977. plus taxes (150$CDN).
  978.  
  979. Alexandre Enkerli   EnkerliA@ere.umontreal.ca
  980. Emergency Bulletin from the National Weather Service:
  981. "Stay away from Windows."
  982. (...during strong thunderstorms)
  983.  
  984.  
  985. >From jpff@maths.bath.ac.uk Tue Jan 16 03:05:03 PST 1996
  986. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id DAA19679 for <think-c@rdatasys.com>; Tue, 16 Jan 1996 03:04:48 -0800 (PST)
  987. From: jpff@maths.bath.ac.uk
  988. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id DAA19680 for <think-c@rdatasys.com>; Tue, 16 Jan 1996 03:04:45 -0800
  989. Message-Id: <199601161104.DAA19680@lionfish.rdatasys.com>
  990. Received: from goggins.bath.ac.uk(138.38.32.13) by lionfish.rdatasys.com via smap (V1.3)
  991.         id smaa19661; Tue Jan 16 03:04:20 1996
  992. Received: from maths.Bath.AC.UK (actually host omphalos.maths.bath.ac.uk) 
  993.           by goggins.bath.ac.uk with SMTP (PP); Tue, 16 Jan 1996 10:14:53 +0000
  994. Date:     Tue, 16 Jan 96 10:18:54 GMT
  995. Subject:  Symantec Debugger
  996. To: think-c@rdatasys.com
  997.  
  998. Message written at 16 Jan 1996 08:29:00 +0000
  999.  
  1000. Am I alone in having problems with the Symantec Debugger for PowerMac
  1001. C?  It seems very sensitive, in the sense that it will not run for any
  1002. but the most trivial programs. I have had the advise previously to
  1003. remove the preference file, and in that case it did actually allow it
  1004. to start.  In my present application it gets as far as creating a
  1005. window called "Source" before removing all its windows and stopping,
  1006. with no comment.  Does anyone have any advice as how to debug
  1007. programs?
  1008.  
  1009. ==John ff
  1010. >From jpff@maths.bath.ac.uk Tue Jan 16 03:05:04 PST 1996
  1011. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id DAA19678 for <think-c@rdatasys.com>; Tue, 16 Jan 1996 03:04:48 -0800 (PST)
  1012. From: jpff@maths.bath.ac.uk
  1013. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id DAA19679 for <think-c@rdatasys.com>; Tue, 16 Jan 1996 03:04:45 -0800
  1014. Message-Id: <199601161104.DAA19679@lionfish.rdatasys.com>
  1015. Received: from goggins.bath.ac.uk(138.38.32.13) by lionfish.rdatasys.com via smap (V1.3)
  1016.         id sma019661; Tue Jan 16 03:04:17 1996
  1017. Received: from maths.Bath.AC.UK (actually host omphalos.maths.bath.ac.uk) 
  1018.           by goggins.bath.ac.uk with SMTP (PP); Tue, 16 Jan 1996 10:14:26 +0000
  1019. Date:     Tue, 16 Jan 96 10:18:26 GMT
  1020. Subject:  Re: Help sought re libraries
  1021. To: think-c@rdatasys.com
  1022.  
  1023. Message written at 15 Jan 1996 21:51:59 +0000
  1024. In-reply-to: <v01530507ad20476d7188@[199.224.69.44]> (message from Dave
  1025.         Nebinger on Mon, 15 Jan 1996 10:26:06 -0800 (PST))
  1026.  
  1027. The bug to which I refere is what happens when one attempt to open the
  1028. 33rd file.  The code calls __getfile() to find a free entry in the iob
  1029. array, and fails, and so returns NULL.  This is passed to freopen as
  1030. the last argument.  The net call is to __parse_mode which promplu
  1031. writes to the read_prohibited and write_prohibited fileds of the
  1032. (non-existent) FILE*.  Later in the actual open call it wil return teh
  1033. NULL and record the error in errno, but it is too late.  A simpel fix
  1034. is in __parse_mode to add as the first thing
  1035.  
  1036.         if (fp == NULL) return 1;
  1037.  
  1038. There are of course other ways of fixing it.
  1039.  
  1040. I also have a problem with FOPEN_MAX being so small, but that is not a
  1041. bug but a nuisance!
  1042.  
  1043. Thank you for your comments about Applescript.  I do not remember
  1044. disabling it, but then I have never knowingly used it as I could not
  1045. find any documentation for it or any examples.  I will try as soon as
  1046. I can get to the Macintosh.  I only hope I can find out if it exists.
  1047.  
  1048. ==John ff
  1049. >From gobbo@udalf1.fisica.uniud.it Wed Jan 17 06:54:40 PST 1996
  1050. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA20556 for <think-c@rdatasys.com>; Wed, 17 Jan 1996 06:54:39 -0800 (PST)
  1051. From: gobbo@udalf1.fisica.uniud.it
  1052. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA18952 for <think-c@rdatasys.com>; Wed, 17 Jan 1996 06:54:38 -0800
  1053. Received: from udalf3.fisica.uniud.it(158.110.40.17) by lionfish.rdatasys.com via smap (V1.3)
  1054.         id sma018938; Wed Jan 17 06:53:45 1996
  1055. Received: from udalf1.fisica.uniud.it by udphvx.fisica.uniud.it with SMTP;
  1056.           Wed, 17 Jan 1996 15:22:05 +0100 (CET)
  1057. Received: from localhost by udalf1.fisica.uniud.it; (5.65v3.2/1.1.8.2/10Oct95-1136AM)
  1058.         id AA01469; Wed, 17 Jan 1996 15:21:44 +0100
  1059. Message-Id: <9601171421.AA01469@udalf1.fisica.uniud.it>
  1060. To: think-c@rdatasys.com
  1061. Subject: Handle Bus Errors  
  1062. Date: Wed, 17 Jan 96 15:21:44 +0100
  1063. X-Mts: smtp
  1064.  
  1065. Hi all,
  1066. I'm quite a beginner and I'm trying to access a VME bus usin the MAC as a master 
  1067. trough a MICRON card. The problem is that the routine I've written should test 
  1068. the presence of a register at a specific location. This migth lead at a bus 
  1069. error if the location is not physically present. I'd like to make my function to 
  1070. return safely from such access, making me know if there was such an error.
  1071. Has someone ever faced this problem or has an example of how to do that (maybe a 
  1072. patch)?
  1073. Thank you in advance,
  1074.         
  1075.         Gianadrea Gobbo ( gobbo@udalf1.fisica.uniud.it )
  1076. >From shuntsbe@mv.us.adobe.com Mon Jan 22 22:00:17 PST 1996
  1077. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id WAA22165 for <think-c@rdatasys.com>; Mon, 22 Jan 1996 22:00:16 -0800 (PST)
  1078. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id WAA18070 for <think-c@rdatasys.com>; Mon, 22 Jan 1996 22:00:15 -0800
  1079. Received: from mail-relay-1.adobe.com(130.248.1.1) by lionfish.rdatasys.com via smap (V1.3)
  1080.         id sma017905; Mon Jan 22 21:59:50 1996
  1081. Received: by mail-relay-1.mv.us.adobe.com; id RAA10173; Mon, 22 Jan 1996 17:55:10 -0800
  1082. Received: by komet.mv.us.adobe.com (4.1/SMI-4.1)
  1083.         id AA00993; Mon, 22 Jan 96 17:49:42 PST
  1084. From: shuntsbe@mv.us.adobe.com (Steve Huntsberry)
  1085. Message-Id: <9601230149.AA00993@komet.mv.us.adobe.com>
  1086. Subject: Universal Headers 7.5
  1087. To: think-c@rdatasys.com
  1088. Date: Mon, 22 Jan 1996 17:49:42 -0800 (PST)
  1089. Cc: shuntsbe@mv.us.adobe.com (Steve Huntsberry)
  1090. X-Mailer: ELM [version 2.4 PL24]
  1091. Mime-Version: 1.0
  1092. Content-Type: text/plain; charset=US-ASCII
  1093. Content-Transfer-Encoding: 7bit
  1094.  
  1095. I am wondering if anyone knows were to get TC 7.0 compatible
  1096. Universal Headers 7.5.  Version 7.1 came with the system,
  1097. but now I seem to have a project that uses the 7.5 headers.
  1098.  
  1099. I have CodeWarrior 7, which has them, but the precompiled
  1100. headers had to be recombined under TC (which was fine),
  1101. and of course the MacTraps and ANSI libraries don't work
  1102. (which is not fine).
  1103.  
  1104. I can't find anything on the Symantec FTP or Web sites,
  1105. and I cannot upgrade to TC 8.0 because I have a 68k machine.
  1106.  
  1107. Any ideas here?
  1108.  
  1109. Please send e-mail as well as posting to the list.
  1110.  
  1111. Steve Huntsberry
  1112. Adobe Systems Inc.
  1113. shuntsbe@mv.us.adobe.com
  1114.  
  1115. >From raz@wri.com Thu Jan 25 06:21:30 PST 1996
  1116. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA22694 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 06:21:28 -0800 (PST)
  1117. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA09611 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 06:21:26 -0800
  1118. Received: from dragonfly.wri.com(140.177.10.12) by lionfish.rdatasys.com via smap (V1.3)
  1119.         id sma009609; Thu Jan 25 06:21:22 1996
  1120. Received: from [140.177.204.193] (razMAC.wri.com [140.177.204.193]) by dragonfly.wri.com (8.7.3/smarthost) with SMTP id IAA07809 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:21:19 -0600 (CST)
  1121. Message-Id: <v02130500ad2d3d3cb8fe@[140.177.204.193]>
  1122. Mime-Version: 1.0
  1123. Content-Type: text/plain; charset="us-ascii"
  1124. Date: Thu, 25 Jan 1996 08:21:25 -0600
  1125. To: think-c@rdatasys.com
  1126. From: raz@wri.com (Mike Rasberry)
  1127. Subject: Re: Symantec Debugger
  1128.  
  1129.  > Am I alone in having problems with the Symantec Debugger for
  1130.  > PowerMac C?  It seems very sensitive, in the sense that it
  1131.  > will not run for any but the most trivial programs. I have
  1132.  > had the advise previously to remove the preference file, and
  1133.  > in that case it did actually allow it to start.  In my
  1134.  > present application it gets as far as creating a window
  1135.  > called "Source" before removing all its windows and stopping,
  1136.  > with no comment.  Does anyone have any advice as how to debug
  1137.  > programs?
  1138.  
  1139. I'm having some problems though not as serious as yours.  I have a project
  1140. with just under 250 source files.  I can run the project under the
  1141. debugger, but the data window won't display any values -- just "out of
  1142. memory".  That's bogus because I've given the debugger as much as 30Mb!
  1143.  
  1144. I posted a question on Symantec's web site earlier this week, but so far I
  1145. haven't received a reply, let alone a solution.  Is anyone from Symantec
  1146. reading this list?
  1147.  
  1148. -raz
  1149.  
  1150.  
  1151. >From rick@devtools.symantec.com Thu Jan 25 08:17:38 PST 1996
  1152. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id IAA29920 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:17:36 -0800 (PST)
  1153. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id IAA13612 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:17:35 -0800
  1154. Received: from devtools.symantec.com(155.64.182.73) by lionfish.rdatasys.com via smap (V1.3)
  1155.         id sma013610; Thu Jan 25 08:17:17 1996
  1156. Received: from [155.64.182.19] by devtools.symantec.com
  1157.  with SMTP (Apple Internet Mail Server 1.0); Thu, 25 Jan 1996 08:17:24 -0700
  1158. Message-Id: <v02130500ad2d56760d88@[155.64.182.19]>
  1159. Mime-Version: 1.0
  1160. Content-Type: text/plain; charset="us-ascii"
  1161. Content-Transfer-Encoding: quoted-printable
  1162. Date: Thu, 25 Jan 1996 08:17:07 -0800
  1163. To: shuntsbe@mv.us.adobe.com, think-c@rdatasys.com
  1164. From: rick@devtools.symantec.com (Rick Hartmann)
  1165. Subject: Re: Universal Headers 7.5
  1166.  
  1167. Steve,
  1168.  
  1169. We now offer an upgrade to C/C++ 7.0.5 for 68k only.  It contains the latest=
  1170.  Universal Headers 2.1 plus the latest TCL and Visual Architect with=
  1171.  documentation in Acrobat PDF format.  The upgrade is $49.95.  Otherwise,=
  1172.  there is no legitimate way of getting our headers and libraries.  We also=
  1173.  offer free email support on the Internet with 24 hour or better turnaround=
  1174.  on business days.  All technical support questions go to support@devtools.s=
  1175. ymantec.com.  Use bugs@devtools.symantec.com to report potential bugs. =20
  1176.  
  1177. You can also upgrade to version 8.0 because it includes the complete 68k=
  1178.  environment as well.  The upgrade is $149.95 which includes an annual=
  1179.  subscription for two more update CD's.   There is over 300 meg of code and=
  1180.  developer information on the CD including Think Reference and all the=
  1181.  databases.  We will be shipping a fat Symantec Project Manager that=
  1182.  produces both 68k and PowerPC code in an upcoming release.
  1183.  
  1184. Rick Hartmann
  1185. Symantec Macintosh Dev Tools Support=20
  1186.  
  1187. On 1/25/96 you wrote:
  1188. >I am wondering if anyone knows were to get TC 7.0 compatible
  1189. >Universal Headers 7.5.  Version 7.1 came with the system,
  1190. >but now I seem to have a project that uses the 7.5 headers.
  1191. >
  1192. >I have CodeWarrior 7, which has them, but the precompiled
  1193. >headers had to be recombined under TC (which was fine),
  1194. >and of course the MacTraps and ANSI libraries don't work
  1195. >(which is not fine).
  1196. >
  1197. >I can't find anything on the Symantec FTP or Web sites,
  1198. >and I cannot upgrade to TC 8.0 because I have a 68k machine.
  1199. >
  1200. >Any ideas here?
  1201. >
  1202. >Please send e-mail as well as posting to the list.
  1203. >
  1204. >Steve Huntsberry
  1205. >Adobe Systems Inc.
  1206. >shuntsbe@mv.us.adobe.com
  1207.  
  1208.  
  1209. >From E.P.M.VAN.ZON@tfdl.agro.nl Thu Jan 25 08:29:50 PST 1996
  1210. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id IAA00585 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:29:49 -0800 (PST)
  1211. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id IAA14091 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:29:48 -0800
  1212. Received: from mgate.nic.agro.nl(145.12.5.12) by lionfish.rdatasys.com via smap (V1.3)
  1213.         id sma014063; Thu Jan 25 08:29:36 1996
  1214. Received: from EXPERT (EXPERT) by AGRO.NL (PMDF V5.0-4 #12026)
  1215.  id <01I0FOR0W4Z400BJ9D@AGRO.NL> for think-c@rdatasys.com; Thu,
  1216.  25 Jan 1996 17:28:45 +0000 (MED)
  1217. Received: from TFDL.AGRO.NL by TFDL.AGRO.NL (PMDF V5.0-4 #12026)
  1218.  id <01I0FOMJM0HS985C7U@TFDL.AGRO.NL> for think-c@rdatasys.com; Thu,
  1219.  25 Jan 1996 17:25:09 +0100 (CET)
  1220. Date: Thu, 25 Jan 1996 17:25:09 +0100 (CET)
  1221. From: "Ed van Zon - FD, Min.LNV" <E.P.M.VAN.ZON@tfdl.agro.nl>
  1222. Subject: Re: Symantec Debugger
  1223. To: think-c@rdatasys.com
  1224. Message-id: <01I0FOMJN0AA985C7U@TFDL.AGRO.NL>
  1225. X-VMS-To: THC
  1226. MIME-version: 1.0
  1227. Content-type: TEXT/PLAIN; CHARSET=US-ASCII
  1228. Content-transfer-encoding: 7BIT
  1229.  
  1230. > > Am I alone in having problems with the Symantec Debugger for
  1231. > > PowerMac C?  It seems very sensitive, in the sense that it
  1232. > > will not run for any but the most trivial programs. I have
  1233. > > had the advise previously to remove the preference file, and
  1234. > > in that case it did actually allow it to start.  In my
  1235. > > present application it gets as far as creating a window
  1236. > > called "Source" before removing all its windows and stopping,
  1237. > > with no comment.  Does anyone have any advice as how to debug
  1238. > > programs?
  1239.  
  1240. >I'm having some problems though not as serious as yours.  I have a project
  1241. >with just under 250 source files.  I can run the project under the
  1242. >debugger, but the data window won't display any values -- just "out of
  1243. >memory".  That's bogus because I've given the debugger as much as 30Mb!
  1244.  
  1245. It just stopped working for me a couple of weeks ago:
  1246. The source and data windows come up (all white) and then it just holds.
  1247. Pressing cmd-power reveals the current process is the Symantec Project
  1248. Manager. Also my program is present, but cannot be brought to the
  1249. front. Restarting is the only way to clean things up, after es-ing
  1250. the PM and debugger (otherwise restarting is not possible).
  1251. Very annoying.
  1252.  
  1253. So any solutions are greatly appreciated!
  1254.  
  1255. Ed van Zon
  1256. vanzon@tfdl.agro.nl
  1257.  
  1258. >From rick@devtools.symantec.com Thu Jan 25 08:30:34 PST 1996
  1259. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id IAA00858 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:30:33 -0800 (PST)
  1260. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id IAA14191 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 08:30:29 -0800
  1261. Received: from devtools.symantec.com(155.64.182.73) by lionfish.rdatasys.com via smap (V1.3)
  1262.         id sma014153; Thu Jan 25 08:30:12 1996
  1263. Received: from [155.64.182.19] by devtools.symantec.com
  1264.  with SMTP (Apple Internet Mail Server 1.0); Thu, 25 Jan 1996 08:30:27 -0700
  1265. Message-Id: <v02130501ad2d595dbc2b@[155.64.182.19]>
  1266. Mime-Version: 1.0
  1267. Content-Type: text/plain; charset="us-ascii"
  1268. Content-Transfer-Encoding: quoted-printable
  1269. Date: Thu, 25 Jan 1996 08:30:11 -0800
  1270. To: raz@wri.com, think-c@rdatasys.com
  1271. From: rick@devtools.symantec.com (Rick Hartmann)
  1272. Subject: Re: Symantec Debugger
  1273.  
  1274. What version of the Symantec Project Manager and debugger are you using? =
  1275.  Sometimes it's counterproductive to throw large amounts of memory at the=
  1276.  debugger.  Better to run at the preferred size or increase it a meg or two.=
  1277.   Same is true for the Symantec Project Manager.   With the latest version=
  1278.  of the SPM and debugger from the R4 update CD, I'm not having this problem=
  1279.  or hearing it from other customers.  Of course, not everyone is building=
  1280.  projects with 250 source files.  If that's overstressing the debugger, we=
  1281.  need to know about it and get it fixed.
  1282.  
  1283. Please direct all technical support questions to support@devtools.symantec.c=
  1284. om.  Use bugs@devtools.symantec.com to report potential bugs.   Expect a=
  1285.  reply, if not an answer, in 24 hours on business days.  Sometimes the tough=
  1286.  problems take a while to research.
  1287.  
  1288. And yes, we do look at this list and most comp.sys.mac.programmer=
  1289.  newsgroups.  We are increasing our efforts with online support.  Given the=
  1290.  nature of developer questions, email is often a better vehicle for support=
  1291.  questions than the phone.  It's hard to see source code on the phone. :-) =
  1292.  As email traffic increases, our staffing for email support will increase. =
  1293.  I also suggest continued posting to this list and to newsgroups. IMHO, as=
  1294.  talented as our staff is, we haven't seen everything or solved every=
  1295.  problem.  Sometimes the collective wisdom of the 'net can provide the=
  1296.  solution you need from their firsthand experience in a very short time.
  1297.  
  1298. Rick Hartmann
  1299. Symantec Macintosh Dev Tools Support=20
  1300.  
  1301. On 1/25/96 you wrote:> > Am I alone in having problems with the Symantec=
  1302.  Debugger for
  1303. > > PowerMac C?  It seems very sensitive, in the sense that it
  1304. > > will not run for any but the most trivial programs. I have
  1305. > > had the advise previously to remove the preference file, and
  1306. > > in that case it did actually allow it to start.  In my
  1307. > > present application it gets as far as creating a window
  1308. > > called "Source" before removing all its windows and stopping,
  1309. > > with no comment.  Does anyone have any advice as how to debug
  1310. > > programs?
  1311. >
  1312. >I'm having some problems though not as serious as yours.  I have a project
  1313. >with just under 250 source files.  I can run the project under the
  1314. >debugger, but the data window won't display any values -- just "out of
  1315. >memory".  That's bogus because I've given the debugger as much as 30Mb!
  1316. >
  1317. >I posted a question on Symantec's web site earlier this week, but so far I
  1318. >haven't received a reply, let alone a solution.  Is anyone from Symantec
  1319. >reading this list?
  1320. >
  1321. >-raz
  1322.  
  1323.  
  1324. >From askwersk@mit.edu Thu Jan 25 10:05:23 PST 1996
  1325. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA07622 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 10:05:18 -0800 (PST)
  1326. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA17957 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 10:05:15 -0800
  1327. Received: from pacific-carrier-annex.mit.edu(18.69.0.28) by lionfish.rdatasys.com via smap (V1.3)
  1328.         id sma017930; Thu Jan 25 10:05:10 1996
  1329. Received: from MIT.MIT.EDU by MIT.EDU with SMTP
  1330.         id AA13653; Thu, 25 Jan 96 13:04:47 EST
  1331. Received: from YAVIN.MIT.EDU by MIT.MIT.EDU (5.61/4.7) id AA01527; Thu, 25 Jan 96 13:04:53 EST
  1332. Message-Id: <9601251804.AA01527@MIT.MIT.EDU>
  1333. Date: Thu, 25 Jan 96 13:05:02 EST
  1334. From: askwersk@mit.edu (Adam Skwersky)
  1335. To: E.P.M.VAN.ZON@tfdl.agro.nl
  1336. Subject: Re: Symantec Debugger
  1337. Cc: Multiple recipients of list <think-c@rdatasys.com>
  1338.  
  1339. Have you tried "removing" all objects and "rebuilding" the project?
  1340. I seem to remember this happening to me too and it dissappeared
  1341. after that.
  1342.  
  1343. Adam Skwersky
  1344. > It just stopped working for me a couple of weeks ago:
  1345. > The source and data windows come up (all white) and then it just holds.
  1346. > Pressing cmd-power reveals the current process is the Symantec Project
  1347. > Manager. Also my program is present, but cannot be brought to the
  1348. > front. Restarting is the only way to clean things up, after es-ing
  1349. > the PM and debugger (otherwise restarting is not possible).
  1350. > Very annoying.
  1351. > So any solutions are greatly appreciated!
  1352. > Ed van Zon
  1353. > vanzon@tfdl.agro.nl
  1354. >From jhaver@nih.gov Thu Jan 25 12:54:41 PST 1996
  1355. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id MAA05098 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 12:54:38 -0800 (PST)
  1356. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id MAA24324 for <think-c@rdatasys.com>; Thu, 25 Jan 1996 12:54:36 -0800
  1357. Received: from pop.cc.nih.gov(137.187.120.140) by lionfish.rdatasys.com via smap (V1.3)
  1358.         id sma024322; Thu Jan 25 12:54:18 1996
  1359. Received: from [137.187.120.16] (ISDA16.cc.nih.gov [137.187.120.16]) by pop.cc.nih.gov (8.7.3/8.7.3) with SMTP id PAA23249; Thu, 25 Jan 1996 15:53:50 -0500 (EST)
  1360. X-Sender: jhaver@pop.cc.nih.gov
  1361. Message-Id: <v02130500ad2d9bbe5702@[137.187.120.98]>
  1362. Mime-Version: 1.0
  1363. Content-Type: text/plain; charset="us-ascii"
  1364. Date: Thu, 25 Jan 1996 15:54:24 -0500
  1365. To: raz@wri.com, think-c@rdatasys.com
  1366. From: jhaver@nih.gov (Jeff Haver)
  1367. Subject: Re: Symantec Debugger
  1368.  
  1369. > > Am I alone in having problems with the Symantec Debugger for
  1370. > > PowerMac C?  It seems very sensitive, in the sense that it
  1371. > > will not run for any but the most trivial programs. I have
  1372. > > had the advise previously to remove the preference file, and
  1373. > > in that case it did actually allow it to start.  In my
  1374. > > present application it gets as far as creating a window
  1375. > > called "Source" before removing all its windows and stopping,
  1376. > > with no comment.  Does anyone have any advice as how to debug
  1377. > > programs?
  1378. >
  1379. >I'm having some problems though not as serious as yours.  I have a project
  1380. >with just under 250 source files.  I can run the project under the
  1381. >debugger, but the data window won't display any values -- just "out of
  1382. >memory".  That's bogus because I've given the debugger as much as 30Mb!
  1383. >
  1384.  
  1385. Verify the "Enable Symbolic Debugging" checkbox in your PowerPC C/C++
  1386. options dialog.  You need to check this to generate symbolic variable
  1387. information.   (Page 97 in Symantec C++ Compiler Guide)
  1388.  
  1389. Jeff
  1390.  
  1391.  
  1392.  
  1393.  
  1394. >From raz@wri.com Thu Jan 25 14:54:38 PST 1996
  1395. >From jpff@maths.bath.ac.uk Fri Jan 26 01:19:10 PST 1996
  1396. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id BAA07997 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 01:19:05 -0800 (PST)
  1397. From: jpff@maths.bath.ac.uk
  1398. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id BAA18197 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 01:19:04 -0800
  1399. Message-Id: <199601260919.BAA18197@lionfish.rdatasys.com>
  1400. Received: from goggins.bath.ac.uk(138.38.32.13) by lionfish.rdatasys.com via smap (V1.3)
  1401.         id sma018187; Fri Jan 26 01:18:39 1996
  1402. Received: from maths.Bath.AC.UK (actually host omphalos.maths.bath.ac.uk) 
  1403.           by goggins.bath.ac.uk with SMTP (PP); Fri, 26 Jan 1996 09:16:30 +0000
  1404. Date:     Fri, 26 Jan 96 9:16:36 GMT
  1405. Subject:  Re: Symantec Debugger
  1406. To: think-c@rdatasys.com
  1407.  
  1408. Message written at 25 Jan 1996 20:32:03 +0000
  1409. In-reply-to: <01I0FOMJN0AA985C7U@TFDL.AGRO.NL> (E.P.M.VAN.ZON@tfdl.agro.nl)
  1410.  
  1411. I realise I started teh current questioning of the debugger.  Acting
  1412. on advice from Symantec I changed to use the debugger in the "next
  1413. release" part of the CD and magically it all started working
  1414. (including teh program I was attempting to debug!)  That could
  1415. indicate some volatility, but I was pleased and not a little impressed
  1416. with the assistance I got from Symantec.  I just though I would say
  1417. that in case I need them again!
  1418.  
  1419. ==John
  1420. >From jweinhof@welchlink.welch.jhu.edu Fri Jan 26 05:59:02 PST 1996
  1421. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id FAA25659 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 05:59:00 -0800 (PST)
  1422. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id FAA27842 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 05:58:57 -0800
  1423. Received: from welchlink.welch.jhu.edu(128.220.59.78) by lionfish.rdatasys.com via smap (V1.3)
  1424.         id sma027840; Fri Jan 26 05:58:28 1996
  1425. Received: from 128.220.93.159 by welchlink.welch.jhu.edu (SMI-8.6/SMI-SVR4)
  1426.         id IAA25712; Fri, 26 Jan 1996 08:56:58 -0500
  1427. Message-ID: <3108A8C6.7BE3@welchlink.welch.jhu.edu>
  1428. Date: Fri, 26 Jan 1996 10:11:18 +0000
  1429. From: John Weinhofer <jweinhof@welchlink.welch.jhu.edu>
  1430. X-Mailer: Mozilla 2.0b4 (Macintosh; I; 68K)
  1431. MIME-Version: 1.0
  1432. To: shuntsbe@mv.us.adobe.com
  1433. CC: Multiple recipients of list <think-c@rdatasys.com>
  1434. Subject: Re: Universal Headers 7.5
  1435. References: <9601230149.AA00993@komet.mv.us.adobe.com>
  1436. Content-Type: text/plain; charset=us-ascii
  1437. Content-Transfer-Encoding: 7bit
  1438.  
  1439. To what address do I send a request to be removed from this list?
  1440. John
  1441. >From support@devtools.symantec.com Fri Jan 26 06:12:31 PST 1996
  1442. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA26579 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 06:12:30 -0800 (PST)
  1443. From: support@devtools.symantec.com
  1444. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA28332 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 06:12:28 -0800
  1445. Received: from devtools.symantec.com(155.64.182.73) by lionfish.rdatasys.com via smap (V1.3)
  1446.         id sma028322; Fri Jan 26 06:11:56 1996
  1447. Received: from [155.64.182.65] by devtools.symantec.com
  1448.  with SMTP (Apple Internet Mail Server 1.0); Fri, 26 Jan 1996 06:12:13 -0700
  1449. X-Sender: steve@devtools.symantec.com
  1450. Message-Id: <v02130502ad2e8fcb50e7@[155.64.182.65]>
  1451. Mime-Version: 1.0
  1452. Content-Type: text/plain; charset="us-ascii"
  1453. Date: Fri, 26 Jan 1996 06:12:22 -0800
  1454. To: think-c@rdatasys.com
  1455. Subject: Re: Symantec Debugger
  1456.  
  1457. Something else you may want to try is to remove the Symantec Debugger
  1458. Prefs from your Preferences folder and throw them away.  If that doesn't
  1459. help then when you select "Run with debugger" from the Project menu hold
  1460. down the option key after making the menu selection.   What that will do is
  1461. prevent the loading of any breakpoints and expressions which,  in some cases,
  1462. can cause the debugger to crash.
  1463.  
  1464. Steve Howard
  1465. Symantec Macintosh DevTools Support       1/26/96
  1466. support@devtools.symantec.com
  1467. ************************************************
  1468. >Have you tried "removing" all objects and "rebuilding" the project?
  1469. >I seem to remember this happening to me too and it dissappeared
  1470. >after that.
  1471. >
  1472. >Adam Skwersky
  1473. >> It just stopped working for me a couple of weeks ago:
  1474. >> The source and data windows come up (all white) and then it just holds.
  1475. >> Pressing cmd-power reveals the current process is the Symantec Project
  1476. >> Manager. Also my program is present, but cannot be brought to the
  1477. >> front. Restarting is the only way to clean things up, after es-ing
  1478. >> the PM and debugger (otherwise restarting is not possible).
  1479. >> Very annoying.
  1480. >>
  1481. >> So any solutions are greatly appreciated!
  1482. >>
  1483. >> Ed van Zon
  1484. >> vanzon@tfdl.agro.nl
  1485. >>
  1486.  
  1487.  
  1488. >From dnebing@epix.net Fri Jan 26 06:31:34 PST 1996
  1489. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA27895 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 06:31:33 -0800 (PST)
  1490. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA28956 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 06:31:28 -0800
  1491. Received: from grape.epix.net(199.224.64.22) by lionfish.rdatasys.com via smap (V1.3)
  1492.         id sma028951; Fri Jan 26 06:31:13 1996
  1493. Received: from [199.224.69.119] (lwbyppp119.epix.net [199.224.69.119]) by epix.net (8.7.1/8.7) with SMTP id JAA10465 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 09:29:19 -0500 (EST)
  1494. Message-Id: <v01530501ad2e90628950@[199.224.69.129]>
  1495. Mime-Version: 1.0
  1496. Content-Type: text/plain; charset="us-ascii"
  1497. Date: Fri, 26 Jan 1996 09:35:52 -0500
  1498. To: think-c@rdatasys.com
  1499. From: dnebing@epix.net (Dave Nebinger)
  1500. Subject: Re: Symantec Debugger
  1501.  
  1502. >> > Am I alone in having problems with the Symantec Debugger for
  1503. >> > PowerMac C?  It seems very sensitive, in the sense that it
  1504. >> > will not run for any but the most trivial programs. I have
  1505. >> > had the advise previously to remove the preference file, and
  1506. >> > in that case it did actually allow it to start.  In my
  1507. >> > present application it gets as far as creating a window
  1508. >> > called "Source" before removing all its windows and stopping,
  1509. >> > with no comment.  Does anyone have any advice as how to debug
  1510. >> > programs?
  1511. >
  1512. >>I'm having some problems though not as serious as yours.  I have a project
  1513. >>with just under 250 source files.  I can run the project under the
  1514. >>debugger, but the data window won't display any values -- just "out of
  1515. >>memory".  That's bogus because I've given the debugger as much as 30Mb!
  1516. >
  1517. >It just stopped working for me a couple of weeks ago:
  1518. >The source and data windows come up (all white) and then it just holds.
  1519. >Pressing cmd-power reveals the current process is the Symantec Project
  1520. >Manager. Also my program is present, but cannot be brought to the
  1521. >front. Restarting is the only way to clean things up, after es-ing
  1522. >the PM and debugger (otherwise restarting is not possible).
  1523. >Very annoying.
  1524.  
  1525. With 8.04d11 I had some debugging problems.  A project with only two
  1526. files would only show the source for one of the files, but not the
  1527. other (regardless of what the settings were).  Removing objects, changing
  1528. settings, etc., wouldn't rectify the problem.
  1529.  
  1530. Since the version from the CD said 8.04 was pre-release, I just reverted
  1531. back to 8.03.  So much for MrC...
  1532.  
  1533. Dave.
  1534.  
  1535. ==========================================================
  1536. Dave Nebinger                             dnebing@epix.net
  1537.              The Alt.Sources.Mac Archivist
  1538.      <http://www.AmbrosiaSW.com/alt.sources.mac/>
  1539.     <ftp://ftp.AmbrosiaSW.com/pub/alt.sources.mac/>
  1540.  
  1541.  
  1542. >From phils@bedford.symantec.com Fri Jan 26 07:35:36 PST 1996
  1543. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id HAA01847 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 07:35:35 -0800 (PST)
  1544. From: phils@bedford.symantec.com
  1545. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id HAA01083 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 07:35:33 -0800
  1546. Received: from bedford.symantec.com(155.64.60.100) by lionfish.rdatasys.com via smap (V1.3)
  1547.         id sma001047; Fri Jan 26 07:35:10 1996
  1548. Received: from [155.64.60.60] by bedford.symantec.com
  1549.  with SMTP (Apple Internet Mail Server 1.0); Fri, 26 Jan 1996 10:32:32 -0500
  1550. Subject: Re: Symantec Debugger
  1551. To: <raz@wri.com>, "Multiple recipients of list" <think-c@rdatasys.com>
  1552. Mime-Version: 1.0
  1553. Content-Type: text/plain; charset="US-ASCII"
  1554. Date: Fri, 26 Jan 1996 10:32:32 -0500
  1555. Message-ID: <1389470144-34789394@bedford.symantec.com>
  1556.  
  1557. >I'm having some problems though not as serious as yours.  I have a project
  1558. >with just under 250 source files.  I can run the project under the
  1559. >debugger, but the data window won't display any values -- just "out of
  1560. >memory".  That's bogus because I've given the debugger as much as 30Mb!
  1561.  
  1562. The most common cause of this error is the "Enable Symbolic Debugging" 
  1563. option in the PowerPC C or C++ compiler options (on the Debugging page). 
  1564. If you happen to turn this option Off, you lose the ability to enter 
  1565. expressions, although you'll still get variables in the stack crawl. 
  1566. Unfortunately this generates an "out of memory" error instead of a more 
  1567. helpful message. Turning the option On and recompiling fixes the problem.
  1568.  
  1569. The next SC++ release will fix this problem, and also adds a "just in 
  1570. time" debugging feature that defers generating debug information until 
  1571. it's required.
  1572.  
  1573. In some cases the current debugger will report and "out of memory" error 
  1574. when the SPM is out of memory, or if there isn't enough temporary memory 
  1575. free. The next release also has fixes for these problems as well that 
  1576. enable the SPM to make more efficient use of memory.
  1577.  
  1578. -phil
  1579.  
  1580. Phil Shapiro                                 Senior Software Engineer
  1581. Development Tools Group                          Symantec Corporation
  1582.                      phils@bedford.symantec.com
  1583.  
  1584. >From ralph@maxsoft.com Fri Jan 26 08:42:14 PST 1996
  1585. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id IAA05956 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 08:42:14 -0800 (PST)
  1586. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id IAA03251 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 08:42:11 -0800
  1587. Received: from mail.voicenet.com(192.204.28.35) by lionfish.rdatasys.com via smap (V1.3)
  1588.         id sma003241; Fri Jan 26 08:42:02 1996
  1589. Received: from [199.234.235.198] (cherryhill09.voicenet.com) by voicenet.com (4.1/SMI-4.1)
  1590.         id AA12354; Fri, 26 Jan 96 11:41:46 EST
  1591. X-Sender: dratman@mail.voicenet.com
  1592. Message-Id: <v02120d03ad2eb3d20cab@[199.234.235.198]>
  1593. Mime-Version: 1.0
  1594. Content-Type: text/plain; charset="us-ascii"
  1595. Date: Fri, 26 Jan 1996 11:42:29 -0500
  1596. To: think-c@rdatasys.com
  1597. From: ralph@maxsoft.com (Ralph Dratman)
  1598. Subject: re: 250 files in project
  1599.  
  1600. >...Of course, not everyone is building
  1601. > projects with 250 source files.  If that's overstressing the debugger, we
  1602. > need to know about it and get it fixed.
  1603.  
  1604. I just want to comment that projects with 250 source files are not at all
  1605. uncommon in my work. I would guess that there are plenty of developers out
  1606. there using that many files and more.
  1607.  
  1608. In my case, this often happens because I do a lot of porting from DOS,
  1609. Windows, and Unix environments. Think about adding together TCL and a
  1610. significant body of code that has accumulated over time under, say Unix,
  1611. and you will realize how many files can be involved in even a relatively
  1612. simple port.
  1613.  
  1614.  
  1615. +-------------------------+
  1616. |  Ralph Dratman          |
  1617. |  Maximum Software       |
  1618. |  121 Dumas Road         |
  1619. |  Cherry Hill, NJ 08003  |
  1620. |                    USA  |
  1621. |  ralph@maxsoft.com      |
  1622. |  Voice: 609/795-2041    |
  1623. |  Fax:   609/354-2008    |
  1624. +-------------------------+
  1625.  
  1626.  
  1627. >From larry@rhythm.com Fri Jan 26 09:49:50 PST 1996
  1628. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id JAA10276 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 09:49:49 -0800 (PST)
  1629. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id JAA05613 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 09:49:46 -0800
  1630. Received: from rhythm.com(192.187.138.1) by lionfish.rdatasys.com via smap (V1.3)
  1631.         id sma005611; Fri Jan 26 09:49:44 1996
  1632. Received: by rhythm.com (931110.SGI/920502.SGI)
  1633.         for askwersk@mit.edu id AA02132; Fri, 26 Jan 96 09:46:02 -0800
  1634. Date: Fri, 26 Jan 96 09:46:02 -0800
  1635. From: larry@rhythm.com (Larry Weinberg)
  1636. Message-Id: <9601261746.AA02132@rhythm.com>
  1637. To: Multiple recipients of list <think-c@rdatasys.com>, askwersk@mit.edu
  1638. Subject: Re: Symantec Debugger
  1639.  
  1640. I thought I sent out this response last week.
  1641.  
  1642. This problem went away for me when I removed the size resource from my
  1643. resource file and I let the project manager build it's own when
  1644. compiling and linking.   I think it was related to one of the
  1645. backgrounding bits.  I can't remember exactly.
  1646.  
  1647.  >Adam Skwersky
  1648.  >> It just stopped working for me a couple of weeks ago:
  1649.  >> The source and data windows come up (all white) and then it just holds.
  1650.  >> Pressing cmd-power reveals the current process is the Symantec Project
  1651.  >> Manager. Also my program is present, but cannot be brought to the
  1652.  >> front. Restarting is the only way to clean things up, after es-ing
  1653.  >> the PM and debugger (otherwise restarting is not possible).
  1654.  >> Very annoying.
  1655.  >> 
  1656.  >> So any solutions are greatly appreciated!
  1657.  >> 
  1658.  >> Ed van Zon
  1659.  >> vanzon@tfdl.agro.nl
  1660.  >> 
  1661.  >
  1662. Larry Weinberg                          Rhythm & Hues, Inc.
  1663.           INTERNET:   larry@rhythm.com
  1664.  
  1665. >From malmgren@euronet.nl Fri Jan 26 15:41:23 PST 1996
  1666. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id PAA03042 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 15:41:21 -0800 (PST)
  1667. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id PAA18322 for <think-c@rdatasys.com>; Fri, 26 Jan 1996 15:41:18 -0800
  1668. Received: from mail.euronet.nl(194.134.0.67) by lionfish.rdatasys.com via smap (V1.3)
  1669.         id sma018300; Fri Jan 26 15:40:52 1996
  1670. Received: from [194.134.0.143] (p224.asd.euronet.nl [194.134.0.218]) by mail.euronet.nl (8.6.10/8.6.10) with SMTP id AAA02893 for <think-c@rdatasys.com>; Sat, 27 Jan 1996 00:40:35 +0100
  1671. Date: Sat, 27 Jan 1996 00:40:35 +0100
  1672. Message-Id: <v01510102ad2f176d8965@[194.134.0.143]>
  1673. Mime-Version: 1.0
  1674. Content-Type: text/plain; charset="us-ascii"
  1675. To: think-c@rdatasys.com
  1676. From: malmgren@euronet.nl (Jens Malmgren)
  1677. Subject: You must not swear in the church...
  1678.  
  1679. Hallo
  1680.  
  1681. You must not swear in the church but a god way to get straight answers
  1682. would be to go to the church and ask why you should believe in god.
  1683.  
  1684. Now folks, why use Symantec C++ and TCL? What about Codewarriorr?
  1685.  
  1686. Another question: Learning C++ is simple when comparing learning a
  1687. class-library. Are there other class-librarys out there? Have I any chance
  1688. to understand them when knowing TCL?
  1689.  
  1690. Or for that sake: Symantec C++ for Windoze. There must be a class-library
  1691. for PC but all my toolbox-calls? (Do not come and say that there is no
  1692. meaning to port Mac programs to the PC because the rumors say that the PC
  1693. will die...)
  1694.  
  1695. /Jens Malmgren
  1696.  
  1697.  
  1698. >From BREWSKI@twics.com Fri Jan 26 22:06:14 PST 1996
  1699. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id WAA28231 for <THINK-C@RDATASYS.COM>; Fri, 26 Jan 1996 22:06:14 -0800 (PST)
  1700. From: BREWSKI@twics.com
  1701. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id WAA02654 for <THINK-C@RDATASYS.COM>; Fri, 26 Jan 1996 22:06:13 -0800
  1702. Received: from tanuki.twics.com(192.135.222.3) by lionfish.rdatasys.com via smap (V1.3)
  1703.         id sma002644; Fri Jan 26 22:05:52 1996
  1704. Date: Sat, 27 Jan 1996 15:06:19 +0900 (JST)
  1705. To: THINK-C@rdatasys.com
  1706. Message-Id: <960127150619.1af26@twics.com>
  1707. Subject: More Debugger questions...
  1708.  
  1709. About every 3 to 4 weeks when I use Think C 7.06 after compiling and
  1710. linking my program, I run it in debugger mode only to get a "ZRef -
  1711. internal Error please remove objects".But after removing
  1712. objects,compiling,linking and running I get the same message.In fact
  1713. the only way to get it running again is to delete the old project
  1714. file make a new project file and add all the old source to it,after
  1715. which there is no debugger,run-time errror. Lastly there are some
  1716. times when my program starts acting "weird".On closer insp ection of
  1717. the debugger data values are not what they should be although I could
  1718. not find any error in my program(and previous versions had run OK) so
  1719. I just rem ove the MacTraps file and reload it and Voila! no
  1720. problems. Now although I was glad to find a workaround to these
  1721. problems I am nervous when I do not know if the final version of my
  1722. program is not 100 percent (well at least 99% (-: ) stable. For
  1723. example I am slightly nervous that my removing and adding of MacTraps
  1724. is a solution only because it is causing my program to acess
  1725. different addreses in memory. So since we have a Symantec guru
  1726. watching over us (or anybody else with some insight or similiar
  1727. problems) I would be grateful for any advice.
  1728. >From jarnold@onramp.net Sat Jan 27 14:44:49 PST 1996
  1729. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id OAA29477 for <think-c@rdatasys.com>; Sat, 27 Jan 1996 14:44:48 -0800 (PST)
  1730. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id OAA05305 for <think-c@rdatasys.com>; Sat, 27 Jan 1996 14:44:46 -0800
  1731. Received: from mailhost.onramp.net(199.1.11.3) by lionfish.rdatasys.com via smap (V1.3)
  1732.         id sma005303; Sat Jan 27 14:44:19 1996
  1733. Received: from [205.240.222.118] (peaches18.onramp.net [205.240.222.118]) by mailhost.onramp.net (8.7.3/8.6.5) with SMTP id QAA27875 for <think-c@rdatasys.com>; Sat, 27 Jan 1996 16:44:13 -0600 (CST)
  1734. Message-Id: <v01530501ad305b133f88@[205.240.222.118]>
  1735. Mime-Version: 1.0
  1736. Content-Type: text/plain; charset="us-ascii"
  1737. Date: Sat, 27 Jan 1996 17:45:35 -0500
  1738. To: think-c@rdatasys.com
  1739. From: jarnold@onramp.net (Joe Arnold)
  1740. Subject: Remove from your mailing list
  1741.  
  1742. Please take me off your mailing list or UNSUBSCRIBE me.
  1743.  
  1744. Thanks
  1745.  
  1746.  
  1747. Joe Arnold
  1748. Mac Systems Consultants
  1749. 3768 Paces Ferry West
  1750. Atlanta, GA 30339-4137
  1751. (770) 435-9282
  1752. jarnold@onramp.net
  1753.  
  1754.  
  1755. >From dnebing@epix.net Mon Jan 29 10:53:36 PST 1996
  1756. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA10413 for <think-c@rdatasys.com>; Mon, 29 Jan 1996 10:53:34 -0800 (PST)
  1757. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA03517 for <think-c@rdatasys.com>; Mon, 29 Jan 1996 10:53:31 -0800
  1758. Received: from grape.epix.net(199.224.64.22) by lionfish.rdatasys.com via smap (V1.3)
  1759.         id sma003507; Mon Jan 29 10:53:05 1996
  1760. Received: from [199.224.69.53] (lwbyppp53.epix.net [199.224.69.53]) by epix.net (8.7.1/8.7) with SMTP id NAA02938; Mon, 29 Jan 1996 13:50:57 -0500 (EST)
  1761. Message-Id: <v01530500ad32c85ec50f@[199.224.69.122]>
  1762. Mime-Version: 1.0
  1763. Content-Type: text/plain; charset="us-ascii"
  1764. Date: Mon, 29 Jan 1996 13:57:33 -0500
  1765. To: think-c@rdatasys.com
  1766. From: dnebing@epix.net (Dave Nebinger)
  1767. Cc: mac-develop@cc.umanitoba.ca
  1768.  
  1769. The alt.sources.mac WWW pages are just about ready.  All of the
  1770. volumes (Ten so far) are included, the snippets pages are still
  1771. being worked on.
  1772.  
  1773. If you're on the web, take a spin by...
  1774.  
  1775. <http://www.AmbrosiaSW.com/alt.sources.mac/>
  1776.  
  1777. Dave.
  1778.  
  1779. ==========================================================
  1780. Dave Nebinger                             dnebing@epix.net
  1781.              The Alt.Sources.Mac Archivist
  1782.      <http://www.AmbrosiaSW.com/alt.sources.mac/>
  1783.     <ftp://ftp.AmbrosiaSW.com/pub/alt.sources.mac/>
  1784.  
  1785.  
  1786. >From marrioja@knight.cmi.k12.il.us Tue Jan 30 11:18:36 PST 1996
  1787. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id LAA13385 for <think-c@rdatasys.com>; Tue, 30 Jan 1996 11:18:35 -0800 (PST)
  1788. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id LAA21883 for <think-c@rdatasys.com>; Tue, 30 Jan 1996 11:18:31 -0800
  1789. Received: from newton.ncsa.uiuc.edu(141.142.2.2) by lionfish.rdatasys.com via smap (V1.3)
  1790.         id sma021875; Tue Jan 30 11:18:14 1996
  1791. Received: from [192.17.33.144] (l110a.leal.cmi.k12.il.us [192.17.33.144]) by newton.ncsa.uiuc.edu (8.6.11/8.6.12) with SMTP id NAA06015 for <think-c@rdatasys.com>; Tue, 30 Jan 1996 13:18:11 -0600
  1792. Date: Tue, 30 Jan 1996 13:18:11 -0600
  1793. Message-Id: <v01530501ad33cca980a9@[192.17.33.144]>
  1794. Mime-Version: 1.0
  1795. Content-Type: text/plain; charset="us-ascii"
  1796. To: think-c@rdatasys.com
  1797. From: marrioja@knight.cmi.k12.il.us (Jane Marriott)
  1798. Subject: Re: Error Condition Re:
  1799.  
  1800.  
  1801. I am sorry to be so cumbersome, but I am a new-bee.  I have been getting
  1802. messages from this address and I did at no time request to become a part of
  1803. this.  Someone told me to try to unsubscribe, so I am trying.  Can you help
  1804. me?
  1805.  
  1806.  
  1807.  
  1808.  
  1809.  
  1810. >We are sorry, but this system sensed the following request which may have been
  1811. >inadvertedly sent to this list:
  1812. >
  1813. >UNSUBSCRIBE   MARRIOTT
  1814. >
  1815. >If your posting was intentional, please accept our apologies and resend your
  1816. >mail message, making sure you do not include anything that may look like a
  1817. >request in the first line of the body of the actual message. If this was
  1818. >indeed a request please resend it to listproc@rdatasys.com
  1819. >Your entire message
  1820. >is copied below.
  1821. >
  1822. >-------------------------------------------------------------------------------
  1823. >unsubscribe   Marriott
  1824.  
  1825.  
  1826. >From nagel@rdatasys.com Tue Jan 30 12:11:46 PST 1996
  1827. Received: from rdatasys.com (nagel@creolefish.rdatasys.com [198.137.184.8]) by amberjack.rdatasys.com (8.7.3/8.7.3) with ESMTP id MAA16858 for <think-c>; Tue, 30 Jan 1996 12:11:45 -0800 (PST)
  1828. To: think-c@amberjack.rdatasys.com
  1829. Subject: ADMIN: future of this list
  1830. Reply-To: mark.nagel@rdatasys.com
  1831. X-Organization: Relational Data Systems, Irvine, CA
  1832. X-Phone: (714) 263-3899
  1833. Date: Tue, 30 Jan 1996 12:11:42 -0800
  1834. Message-ID: <26154.823032702@rdatasys.com>
  1835. From: "Mark D. Nagel" <nagel@rdatasys.com>
  1836.  
  1837. I am in the midst of moving to a new job and am left pondering the
  1838. future of the THINK C mailing list.  No matter what happens, the home
  1839. of the list will be changing.  My question is: to where?  I can take
  1840. the list with me again and set up forwarding, etc., but I find that I
  1841. have less interest in the list than in the past since I have largely
  1842. switched to Metrowerks for software development.  This lack of
  1843. interest is reflected in the list and archives, and I'm sure many
  1844. would prefer a more involved list manager.
  1845.  
  1846. My goal for this message is to determine whether there is anyone out
  1847. there willing to take over the list and archives.  There are currently
  1848. about 500 addresses on the list and about 40M of files in the archive. 
  1849. Peak activity (in the past) has never been more than 20-30 messages
  1850. per day and lately is more like 10-20 messages per week.  There are a
  1851. good many things that should be done with the list, such as creating a
  1852. WWW home page with access to archived files and messages, an actually
  1853. useful FAQ list, etc.  If there is anyone out there interested and
  1854. willing to assume control, please let me know.  I will do everything I
  1855. can to make sure the transition is as pain-free as possible.  The list
  1856. currently operates under listproc 6.0c, but switching to majordomo or
  1857. some other list management package should not be too difficult.  If no
  1858. one volunteers, I will probably take the list with me, but my
  1859. involvement will not increase and the list will most likely continue
  1860. to languish.
  1861.  
  1862. Mark
  1863. >From blob@apple.com Wed Jan 31 11:32:25 PST 1996
  1864. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id LAA25509 for <think-c@rdatasys.com>; Wed, 31 Jan 1996 11:32:21 -0800 (PST)
  1865. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id LAA10953 for <think-c@rdatasys.com>; Wed, 31 Jan 1996 11:32:19 -0800
  1866. Received: from apple.com(130.43.2.2) by lionfish.rdatasys.com via smap (V1.3)
  1867.         id sma010943; Wed Jan 31 11:31:50 1996
  1868. Received: from [17.127.11.186] ([17.127.11.186]) by apple.com (8.6.12/8.6.12) with SMTP id LAA07593; Wed, 31 Jan 1996 11:29:51 -0800
  1869. Message-Id: <v02130502ad3570334c59@[17.127.11.186]>
  1870. Mime-Version: 1.0
  1871. Content-Type: text/plain; charset="us-ascii"
  1872. Date: Wed, 31 Jan 1996 11:28:56 -0800
  1873. To: mac-communications@solutions.apple.com, macdtg-talk@bedford.symantec.com,
  1874.         MACPROG@wuvmd.wustl.edu, mpw-dev@solutions.apple.com,
  1875.         quicktime-dev@solutions.apple.com, think-c@rdatasys.com
  1876. From: blob@apple.com (Brian Bechtel)
  1877. Subject: Sample code ideas survey
  1878.  
  1879. (A copy of this message has also been posted to the following newsgroups:
  1880. comp.sys.mac.programmer.info)
  1881.  
  1882. I apologize in advance if you see this several times, or if you feel this
  1883. is not appropriate content for this mailing list.  I have used the web page
  1884. of mailing lists at <http://www.macfaq.com/mailinglists.html> to guess at
  1885. appropriate mailing lists for this request.
  1886.  
  1887. I'm gathering input for some work planning we are doing in DTS.  DTS
  1888. frequently does sample code, with the express purpose of helping
  1889. developers with problems they encounter.  If you have a suggestion for
  1890. sample code, please send it to me at the email address <blob@apple.com>.
  1891. As a subject line, please use the words "Sample Code Survey".  Describe
  1892. the kind of sample code you would like to see, in as much detail as
  1893. possible.  Remember that sample code is designed to help all developers.
  1894. I can't promise that we will actually write all sample code requested, but
  1895. it will help us prioritize what sample code we should be writing.
  1896.  
  1897. I will collect all suggestions and pass them on to DTS managers so we can
  1898. allocate time for appropriate sample code. Thank you in advance for any
  1899. responses.
  1900.  
  1901. --Brian Bechtel, DTS    blob@apple.com
  1902.  
  1903.  
  1904. ------------------------------ Cut here ------------------------------
  1905.